Get the version of SDL that is linked against your program.
int SDL_GetVersion(SDL_version * ver);
ver | the SDL_version structure that contains the version information |
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
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 a macro that tells you what version you compiled with.
This function may be called safely at any time, even before SDL_Init().
This function is available since SDL 3.0.0.
SDL_version compiled;
SDL_version linked;
SDL_VERSION(&compiled);
SDL_GetVersion(&linked);"We compiled against SDL version %u.%u.%u ...\n",
SDL_Log(
compiled.major, compiled.minor, compiled.patch);"But we are linking against SDL version %u.%u.%u.\n",
SDL_Log( linked.major, linked.minor, linked.patch);