Remove CBitmapSurface.
[SDL.s60v3.git] / test / testkeys.c
blobe320c6dff28e021594748475b4f3ffb3efe5365e
2 /* Print out all the keysyms we have, just to verify them */
4 #include <stdio.h>
5 #include <ctype.h>
6 #include <stdlib.h>
7 #include <string.h>
9 #include "SDL.h"
11 int main(int argc, char *argv[])
13 SDLKey key;
15 if ( SDL_Init(SDL_INIT_VIDEO) < 0 ) {
16 fprintf(stderr, "Couldn't initialize SDL: %s\n",
17 SDL_GetError());
18 exit(1);
20 for ( key=SDLK_FIRST; key<SDLK_LAST; ++key ) {
21 printf("Key #%d, \"%s\"\n", key, SDL_GetKeyName(key));
23 SDL_Quit();
24 return(0);