getHarfBuzzVersion static method
Query the version of the HarfBuzz library in use.
If HarfBuzz is not available, the version reported is 0.0.0.
\param major to be filled in with the major version number. Can be NULL. \param minor to be filled in with the minor version number. Can be NULL. \param patch to be filled in with the param version number. Can be NULL.
\threadsafety It is safe to call this function from any thread.
\since This function is available since SDL_ttf 3.0.0.
extern SDL_DECLSPEC void SDLCALL TTF_GetHarfBuzzVersion(int *major, int *minor, int *patch)
Implementation
static void getHarfBuzzVersion(
Pointer<Int32> major, Pointer<Int32> minor, Pointer<Int32> patch) {
return ttfGetHarfBuzzVersion(major, minor, patch);
}