ass_alloc_style method

int ass_alloc_style(
  1. Pointer<ASS_Track> track
)

\brief Allocate new style. \param track track \return newly allocated style id >= 0, or a value < 0 on failure See GENERAL NOTE in ass_types.h.

Implementation

int ass_alloc_style(
  ffi.Pointer<ASS_Track> track,
) {
  return _ass_alloc_style(
    track,
  );
}