SDL_version
Name
SDL_version -- Information about the version of SDL in use.
Structure Definition
#include <SDL_version.h>
typedef struct SDL_version {
Uint8 major
Uint8 minor
Uint8 patch
} SDL_version;
Structure Data
major |
major version |
minor |
minor version |
patch |
update version |
Description
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).
See Also
SDL_VERSION_ATLEAST, SDL_VERSION, SDL_GetVersion
