This macro turns the version numbers into a numeric value.
Defined in <SDL3/SDL_version.h>
#define SDL_VERSIONNUM(major, minor, patch) \
((major) * 1000000 + (minor) * 1000 + (patch))
major | the major version number. |
minor | the minorversion number. |
patch | the patch version number. |
(1,2,3) becomes 1002003.
This macro is available since SDL 3.1.3.