testkeys.c
资源名称:NETVIDEO.rar [点击查看]
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:
流媒体/Mpeg4/MP4
开发平台:
Visual C++
- /* 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: %sn",
- 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);
- }