Mercurial > sdl-ios-xcode
annotate test/testkeys.c @ 3971:aea2f9cd5b8e SDL-1.2
Fixed win32 event name list (WM_MOUSELAST was listed twice, one should be
WM_MOUSEWHEEL).
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sat, 16 Jun 2007 05:24:55 +0000 |
parents | d93862a3d821 |
children | 782fd950bd46 c121d94672cb |
rev | line source |
---|---|
0 | 1 |
2 /* Print out all the keysyms we have, just to verify them */ | |
3 | |
4 #include <stdio.h> | |
5 #include <ctype.h> | |
1154
d93862a3d821
Fixed compiler warnings in Watcom C.
Ryan C. Gordon <icculus@icculus.org>
parents:
0
diff
changeset
|
6 #include <stdlib.h> |
d93862a3d821
Fixed compiler warnings in Watcom C.
Ryan C. Gordon <icculus@icculus.org>
parents:
0
diff
changeset
|
7 #include <string.h> |
0 | 8 |
9 #include "SDL.h" | |
10 | |
11 int main(int argc, char *argv[]) | |
12 { | |
13 SDLKey key; | |
14 | |
15 if ( SDL_Init(SDL_INIT_VIDEO) < 0 ) { | |
16 fprintf(stderr, "Couldn't initialize SDL: %s\n", | |
17 SDL_GetError()); | |
18 exit(1); | |
19 } | |
20 for ( key=SDLK_FIRST; key<SDLK_LAST; ++key ) { | |
21 printf("Key #%d, \"%s\"\n", key, SDL_GetKeyName(key)); | |
22 } | |
23 SDL_Quit(); | |
24 return(0); | |
25 } |