comparison src/video/wincommon/SDL_sysevents.c @ 1428:5f52867ba65c

Update for Visual C++ 6.0
author Sam Lantinga <slouken@libsdl.org>
date Fri, 24 Feb 2006 18:24:57 +0000
parents d910939febfa
children bb6839704ed6
comparison
equal deleted inserted replaced
1427:5f5a74d29d18 1428:5f52867ba65c
76 #ifndef NO_GETKEYBOARDSTATE 76 #ifndef NO_GETKEYBOARDSTATE
77 /* Variables and support functions for SDL_ToUnicode() */ 77 /* Variables and support functions for SDL_ToUnicode() */
78 static int codepage; 78 static int codepage;
79 static int Is9xME(); 79 static int Is9xME();
80 static int GetCodePage(); 80 static int GetCodePage();
81 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, BYTE *keystate, Uint16 *wchars, int wsize, UINT flags); 81 static int WINAPI ToUnicode9xME(UINT vkey, UINT scancode, BYTE *keystate, LPWSTR wchars, int wsize, UINT flags);
82 82
83 ToUnicodeFN SDL_ToUnicode = ToUnicode9xME; 83 ToUnicodeFN SDL_ToUnicode = ToUnicode9xME;
84 #endif /* !NO_GETKEYBOARDSTATE */ 84 #endif /* !NO_GETKEYBOARDSTATE */
85 85
86 86