comparison src/video/win32/SDL_win32window.c @ 2767:73b9f5fc6690

This can be static
author Sam Lantinga <slouken@libsdl.org>
date Sun, 12 Oct 2008 16:15:43 +0000
parents 2768bd7281e0
children 99210400e8b9
comparison
equal deleted inserted replaced
2766:5955b6550d7e 2767:73b9f5fc6690
36 36
37 /* This is included after SDL_win32video.h, which includes windows.h */ 37 /* This is included after SDL_win32video.h, which includes windows.h */
38 #include "SDL_syswm.h" 38 #include "SDL_syswm.h"
39 39
40 extern HCTX *g_hCtx; /* the table of tablet event contexts, each windows has to have it's own tablet context */ 40 extern HCTX *g_hCtx; /* the table of tablet event contexts, each windows has to have it's own tablet context */
41 int highestId = 0; /* the highest id of the tablet context */ 41 static Uint32 highestId = 0; /* the highest id of the tablet context */
42 42
43 /* Fake window to help with DirectInput events. */ 43 /* Fake window to help with DirectInput events. */
44 HWND SDL_HelperWindow = NULL; 44 HWND SDL_HelperWindow = NULL;
45 static WCHAR *SDL_HelperWindowClassName = TEXT("SDLHelperWindowInputCatcher"); 45 static WCHAR *SDL_HelperWindowClassName = TEXT("SDLHelperWindowInputCatcher");
46 static WCHAR *SDL_HelperWindowName = TEXT("SDLHelperWindowInputMsgWindow"); 46 static WCHAR *SDL_HelperWindowName = TEXT("SDLHelperWindowInputMsgWindow");