author | Sam Lantinga <slouken@libsdl.org> |
Sat, 13 Apr 2002 14:40:13 +0000 | |
changeset 342 | cdf0cf26347b |
parent 0 | 74212992fb08 |
child 1154 | d93862a3d821 |
permissions | -rw-r--r-- |
/* Print out all the keysyms we have, just to verify them */ #include <stdio.h> #include <ctype.h> #include "SDL.h" int main(int argc, char *argv[]) { SDLKey key; if ( SDL_Init(SDL_INIT_VIDEO) < 0 ) { fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError()); exit(1); } for ( key=SDLK_FIRST; key<SDLK_LAST; ++key ) { printf("Key #%d, \"%s\"\n", key, SDL_GetKeyName(key)); } SDL_Quit(); return(0); }