ass_get_available_font_providers method

void ass_get_available_font_providers(
  1. Pointer<ASS_Library> priv,
  2. Pointer<Pointer<Int32>> providers,
  3. Pointer<Size> size
)

\brief Get the list of available font providers. The output array is allocated with malloc and can be released with free(). If an allocation error occurs, size is set to (size_t)-1. \param priv library handle \param providers output, list of default providers (malloc'ed array) \param size output, number of providers \return list of available font providers (user owns the returned array)

Implementation

void ass_get_available_font_providers(
  ffi.Pointer<ASS_Library> priv,
  ffi.Pointer<ffi.Pointer<ffi.Int32>> providers,
  ffi.Pointer<ffi.Size> size,
) {
  return _ass_get_available_font_providers(
    priv,
    providers,
    size,
  );
}