SDL_REVISION
Name
SDL_REVISION -- Get compile time code revision.
Synopsis
#include "SDL_revision.h" #define SDL_REVISION
Description
SDL_REVISION gets the code revision of SDL that is compiled against your program.
Return Value
Returns the SVN revision of the SDL library used at compile time.
Example
1 if (SDL_GetRevision() < SDL_REVISION) {
2 printf("Compiled with SDL revision %d, but runtime SDL revision is %d.\n",
3 SDL_REVISION, SDL_GetRevision());
4 }
