comparison src/video/win32/SDL_win32video.h @ 2726:f23ebf1ddac4

Dynamically load wintab32.dll
author Sam Lantinga <slouken@libsdl.org>
date Tue, 26 Aug 2008 06:03:48 +0000
parents 0e2b65f32298
children 2768bd7281e0
comparison
equal deleted inserted replaced
2725:6ce6d56b63bf 2726:f23ebf1ddac4
64 { 64 {
65 #if SDL_VIDEO_RENDER_D3D 65 #if SDL_VIDEO_RENDER_D3D
66 HANDLE d3dDLL; 66 HANDLE d3dDLL;
67 IDirect3D9 *d3d; 67 IDirect3D9 *d3d;
68 #endif 68 #endif
69 /* *INDENT-OFF* */
70 /* Function pointers for the Wacom API */
71 HANDLE wintabDLL;
72 UINT (*WTInfo) (UINT, UINT, LPVOID);
73 HCTX (*WTOpen) (HWND, LPLOGCONTEXT, BOOL);
74 int (*WTPacket) (HCTX, UINT, LPVOID);
75 BOOL (*WTClose) (HCTX);
76 /* *INDENT-ON* */
77
69 int mouse; 78 int mouse;
70 int keyboard; 79 int keyboard;
71 SDL_scancode *key_layout; 80 SDL_scancode *key_layout;
72 } SDL_VideoData; 81 } SDL_VideoData;
73 82