This macro extracts the minor version from a version number
Defined in <SDL3/SDL_version.h>
#define SDL_VERSIONNUM_MINOR(version) (((version) / 1000) % 1000)| version | the version number. |
1002003 becomes 2.
It is safe to call this macro from any thread.
This macro is available since SDL 3.2.0.