Mercurial > sdl-ios-xcode
comparison src/video/win32/SDL_win32video.c @ 3771:8cc36a399a12 gsoc2008_manymouse
comments added and improved code look(windows part)
author | Szymon Wilczek <kazeuser@gmail.com> |
---|---|
date | Sat, 02 Aug 2008 14:02:28 +0000 |
parents | 81b649bad6d2 |
children |
comparison
equal
deleted
inserted
replaced
3770:81b649bad6d2 | 3771:8cc36a399a12 |
---|---|
35 | 35 |
36 /* Initialization/Query functions */ | 36 /* Initialization/Query functions */ |
37 static int WIN_VideoInit(_THIS); | 37 static int WIN_VideoInit(_THIS); |
38 static void WIN_VideoQuit(_THIS); | 38 static void WIN_VideoQuit(_THIS); |
39 | 39 |
40 int total_mice =0; | 40 int total_mice = 0; /*total mouse count*/ |
41 HANDLE* mice = NULL; | 41 HANDLE* mice = NULL; /*the handles to the detected mice*/ |
42 HCTX* g_hCtx = NULL; | 42 HCTX* g_hCtx = NULL; /*handles to tablet contexts*/ |
43 int tablet=-1; | 43 int tablet=-1; /*we're assuming that there is no tablet*/ |
44 | 44 |
45 /* WIN32 driver bootstrap functions */ | 45 /* WIN32 driver bootstrap functions */ |
46 | 46 |
47 static int | 47 static int |
48 WIN_Available(void) | 48 WIN_Available(void) |