Use Interlocked* functions in AddRef and Release.
[wine.git] / dlls / wintab32 / wintab32.c
blob686701c990b6fd4b4a9ac03a34b266444ccc180a
1 /*
2 * WinTab32 library
4 * Copyright 2003 CodeWeavers, Aric Stewart
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wingdi.h"
26 #include "winuser.h"
27 #include "winerror.h"
28 #include "wintab.h"
29 #include "wintab_internal.h"
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(wintab32);
34 HWND hwndDefault = NULL;
35 static const WCHAR
36 WC_TABLETCLASSNAME[] = {'W','i','n','e','T','a','b','l','e','t','C','l','a','s','s',0};
37 CRITICAL_SECTION csTablet;
39 int (*pLoadTabletInfo)(HWND hwnddefault) = NULL;
40 int (*pGetCurrentPacket)(LPWTPACKET packet) = NULL;
41 int (*pAttachEventQueueToTablet)(HWND hOwner) = NULL;
42 UINT (*pWTInfoA)(UINT wCategory, UINT nIndex, LPVOID lpOutput) = NULL;
44 static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
45 LPARAM lParam);
47 static VOID TABLET_Register()
49 WNDCLASSW wndClass;
50 ZeroMemory(&wndClass, sizeof(WNDCLASSW));
51 wndClass.style = CS_GLOBALCLASS;
52 wndClass.lpfnWndProc = TABLET_WindowProc;
53 wndClass.cbClsExtra = 0;
54 wndClass.cbWndExtra = 0;
55 wndClass.hCursor = (HCURSOR)NULL;
56 wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW +1);
57 wndClass.lpszClassName = WC_TABLETCLASSNAME;
58 RegisterClassW(&wndClass);
61 static VOID TABLET_Unregister()
63 UnregisterClassW(WC_TABLETCLASSNAME, (HINSTANCE)NULL);
66 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpReserved)
68 static const WCHAR name[] = {'T','a','b','l','e','t',0};
69 HMODULE hx11drv;
71 TRACE("%p, %lx, %p\n",hInstDLL,fdwReason,lpReserved);
72 switch (fdwReason)
74 case DLL_PROCESS_ATTACH:
75 TRACE("Initialization\n");
76 InitializeCriticalSection(&csTablet);
77 hx11drv = GetModuleHandleA("x11drv.dll");
78 if (hx11drv)
80 pLoadTabletInfo = (void *)GetProcAddress(hx11drv, "LoadTabletInfo");
81 pAttachEventQueueToTablet = (void *)GetProcAddress(hx11drv, "AttachEventQueueToTablet");
82 pGetCurrentPacket = (void *)GetProcAddress(hx11drv, "GetCurrentPacket");
83 pWTInfoA = (void *)GetProcAddress(hx11drv, "WTInfoA");
84 TABLET_Register();
85 hwndDefault = CreateWindowW(WC_TABLETCLASSNAME, name,
86 WS_POPUPWINDOW,0,0,0,0,0,0,hInstDLL,0);
88 else
89 return FALSE;
90 break;
91 case DLL_PROCESS_DETACH:
92 TRACE("Detaching\n");
93 if (hwndDefault)
95 DestroyWindow(hwndDefault);
96 hwndDefault = 0;
98 TABLET_Unregister();
99 DeleteCriticalSection(&csTablet);
100 break;
102 return TRUE;
107 * The window proc for the default TABLET window
109 static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
110 LPARAM lParam)
112 TRACE("Incoming Message 0x%x (0x%08x, 0x%08x)\n", uMsg, (UINT)wParam,
113 (UINT)lParam);
115 switch(uMsg)
117 case WM_NCCREATE:
118 return TRUE;
120 case WT_PACKET:
122 WTPACKET packet;
123 LPOPENCONTEXT handler;
124 pGetCurrentPacket(&packet);
125 handler = AddPacketToContextQueue(&packet,(HWND)lParam);
126 if (handler)
127 TABLET_PostTabletMessage(handler, WT_PACKET,
128 (WPARAM)packet.pkSerialNumber,
129 (LPARAM)handler->handle, FALSE);
130 break;
132 case WT_PROXIMITY:
134 LPOPENCONTEXT handler;
135 LPARAM prox;
136 handler = FindOpenContext((HWND)lParam);
137 if (handler)
139 prox = MAKELPARAM( wParam, 1 );
140 TABLET_PostTabletMessage(handler, WT_PROXIMITY,
141 (WPARAM)handler->handle, (LPARAM)prox,
142 TRUE);
144 break;
147 return 0;