table of contents
- experimental 3~git20241102~f20defe+ds-1
TTF_WasInit(3) | SDL_ttf3 FUNCTIONS | TTF_WasInit(3) |
NAME¶
TTF_WasInit - Check if SDL_ttf is initialized.
HEADER FILE¶
Defined in SDL3_ttf/SDL_ttf.h
SYNOPSIS¶
#include "SDL3_ttf/SDL_ttf.h"
int TTF_WasInit(void);
DESCRIPTION¶
This reports the number of times the library has been initialized by a call to TTF_Init (), without a paired deinitialization request from
TTF_Quit ().
In short: if it's greater than zero, the library is currently initialized and ready to work. If zero, it is not initialized.
Despite the return value being a signed integer, this function should not return a negative number.
RETURN VALUE¶
Returns the current number of initialization calls, that need to eventually be paired with this many calls to TTF_Quit ().
THREAD SAFETY¶
It is safe to call this function from any thread.
AVAILABILITY¶
This function is available since SDL_ttf 3.0.0.
SEE ALSO¶
•(3), TTF_Init(3), •(3), TTF_Quit(3)
SDL_ttf 3.0.0 | SDL_ttf |