Home | History | Annotate | Download | only in test
      1 
      2 /* Print out all the keysyms we have, just to verify them */
      3 
      4 #include <stdio.h>
      5 #include <ctype.h>
      6 #include <stdlib.h>
      7 #include <string.h>
      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 }
     26