testkeys.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* Print out all the keysyms we have, just to verify them */
  2. #include <stdio.h>
  3. #include <ctype.h>
  4. #include "SDL.h"
  5. int main(int argc, char *argv[])
  6. {
  7. SDLKey key;
  8. if ( SDL_Init(SDL_INIT_VIDEO) < 0 ) {
  9. fprintf(stderr, "Couldn't initialize SDL: %sn",
  10. SDL_GetError());
  11. exit(1);
  12. }
  13. for ( key=SDLK_FIRST; key<SDLK_LAST; ++key ) {
  14. printf("Key #%d, "%s"n", key, SDL_GetKeyName(key));
  15. }
  16. SDL_Quit();
  17. return(0);
  18. }