SDL_GetVersion - Man Page
Get the version of SDL that is linked against your program.
Header File
Defined in SDL3/SDL_version.h
Synopsis
#include "SDL3/SDL.h" int SDL_GetVersion(void);
Description
If you are linking to SDL dynamically, then it is possible that the current version will be different than the version you compiled against. This function returns the current version, while SDL_VERSION
is the version you compiled with.
This function may be called safely at any time, even before
SDL_Init ().
Return Value
Returns the version of the linked library.
Availability
This function is available since SDL 3.2.0.
See Also
·(3), SDL_GetRevision(3)
Referenced By
SDL_GetRevision(3), SDL_VERSION(3).
SDL 3.2.2 Simple Directmedia Layer SDL3 FUNCTIONS