SDL  2.0
testver.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include "SDL.h"
#include "SDL_revision.h"
+ Include dependency graph for testver.c:

Go to the source code of this file.

Functions

int main (int argc, char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
char *  argv[] 
)

Definition at line 24 of file testver.c.

References SDL_version::major, SDL_version::minor, SDL_version::patch, SDL_GetRevision, SDL_GetRevisionNumber, SDL_GetVersion, SDL_Log, SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, SDL_LogSetPriority, SDL_Quit, SDL_REVISION, SDL_REVISION_NUMBER, and SDL_VERSION.

25 {
26  SDL_version compiled;
27  SDL_version linked;
28 
29  /* Enable standard application logging */
31 
32 #if SDL_VERSION_ATLEAST(2, 0, 0)
33  SDL_Log("Compiled with SDL 2.0 or newer\n");
34 #else
35  SDL_Log("Compiled with SDL older than 2.0\n");
36 #endif
37  SDL_VERSION(&compiled);
38  SDL_Log("Compiled version: %d.%d.%d.%d (%s)\n",
39  compiled.major, compiled.minor, compiled.patch,
41  SDL_GetVersion(&linked);
42  SDL_Log("Linked version: %d.%d.%d.%d (%s)\n",
43  linked.major, linked.minor, linked.patch,
45  SDL_Quit();
46  return (0);
47 }
Uint8 major
Definition: SDL_version.h:53
#define SDL_GetRevision
#define SDL_REVISION_NUMBER
Definition: SDL_revision.h:2
#define SDL_VERSION(x)
Macro to determine SDL version program was compiled against.
Definition: SDL_version.h:79
#define SDL_Log
#define SDL_GetVersion
Information the version of SDL in use.
Definition: SDL_version.h:51
#define SDL_GetRevisionNumber
#define SDL_Quit
Uint8 minor
Definition: SDL_version.h:54
#define SDL_LogSetPriority
#define SDL_REVISION
Definition: SDL_revision.h:1
Uint8 patch
Definition: SDL_version.h:55