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.

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}
#define SDL_GetVersion
#define SDL_LogSetPriority
#define SDL_Quit
#define SDL_GetRevision
#define SDL_Log
#define SDL_GetRevisionNumber
@ SDL_LOG_PRIORITY_INFO
Definition: SDL_log.h:106
@ SDL_LOG_CATEGORY_APPLICATION
Definition: SDL_log.h:66
#define SDL_REVISION_NUMBER
Definition: SDL_revision.h:2
#define SDL_REVISION
Definition: SDL_revision.h:1
#define SDL_VERSION(x)
Macro to determine SDL version program was compiled against.
Definition: SDL_version.h:79
Information the version of SDL in use.
Definition: SDL_version.h:52
Uint8 minor
Definition: SDL_version.h:54
Uint8 patch
Definition: SDL_version.h:55
Uint8 major
Definition: SDL_version.h:53

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.