Mercurial > sdl-ios-xcode
comparison test/testver.c @ 1895:c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 10 Jul 2006 21:04:37 +0000 |
parents | d93862a3d821 |
children | 388c5a2daeac |
comparison
equal
deleted
inserted
replaced
1894:c69cee13dd76 | 1895:c121d94672cb |
---|---|
6 #include <stdio.h> | 6 #include <stdio.h> |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include "SDL.h" | 9 #include "SDL.h" |
10 | 10 |
11 int main(int argc, char *argv[]) | 11 int |
12 main(int argc, char *argv[]) | |
12 { | 13 { |
13 SDL_version compiled; | 14 SDL_version compiled; |
14 | 15 |
15 /* Initialize SDL */ | 16 /* Initialize SDL */ |
16 if ( SDL_Init(0) < 0 ) { | 17 if (SDL_Init(0) < 0) { |
17 fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError()); | 18 fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError()); |
18 exit(1); | 19 exit(1); |
19 } | 20 } |
20 #ifdef DEBUG | 21 #ifdef DEBUG |
21 fprintf(stderr, "SDL initialized\n"); | 22 fprintf(stderr, "SDL initialized\n"); |
22 #endif | 23 #endif |
23 #if SDL_VERSION_ATLEAST(1, 2, 0) | 24 #if SDL_VERSION_ATLEAST(1, 2, 0) |
24 printf("Compiled with SDL 1.2 or newer\n"); | 25 printf("Compiled with SDL 1.2 or newer\n"); |
25 #else | 26 #else |
26 printf("Compiled with SDL older than 1.2\n"); | 27 printf("Compiled with SDL older than 1.2\n"); |
27 #endif | 28 #endif |
28 SDL_VERSION(&compiled); | 29 SDL_VERSION(&compiled); |
29 printf("Compiled version: %d.%d.%d\n", | 30 printf("Compiled version: %d.%d.%d\n", |
30 compiled.major, compiled.minor, compiled.patch); | 31 compiled.major, compiled.minor, compiled.patch); |
31 printf("Linked version: %d.%d.%d\n", | 32 printf("Linked version: %d.%d.%d\n", |
32 SDL_Linked_Version()->major, | 33 SDL_Linked_Version()->major, |
33 SDL_Linked_Version()->minor, | 34 SDL_Linked_Version()->minor, SDL_Linked_Version()->patch); |
34 SDL_Linked_Version()->patch); | 35 SDL_Quit(); |
35 SDL_Quit(); | 36 return (0); |
36 return(0); | |
37 } | 37 } |