#pragma section-numbers off #pragma disable-camelcase = SDL_version = A structure that contains information about the version of SDL in use. <> == Data Fields == ||Uint8 ||'''major''' ||major version || ||Uint8 ||'''minor''' ||minor version || ||Uint8 ||'''patch''' ||update version (patchlevel)|| == Code Examples == <> == Remarks == Represents the library's version as three levels: * major revision (increments with massive changes, additions, and enhancements) * minor revision (increments with backwards-compatible changes to the major revision), and * patchlevel (increments with fixes to the minor revision) The macro [[SDL_VERSION]] can be used to populate this structure with information. == Related Macros == .[[SDL_COMPILEDVERSION]] .[[SDL_VERSION]] .[[SDL_VERSIONNUM]] .[[SDL_VERSION_ATLEAST]] == Related Functions == . [[SDL_GetVersion]] ---- [[CategoryStruct]], [[CategoryVersion]]