4 * Copyright 2002 Patrik Stridvall
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/windef16.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(wintab
);
35 /**********************************************************************/
37 #define DECLARE_HANDLE16(a) \
38 typedef HANDLE16 a##16; \
39 typedef a##16 *P##a##16; \
40 typedef a##16 *NP##a##16; \
41 typedef a##16 *LP##a##16
43 DECLARE_HANDLE16(HMGR
); /* manager handle */
44 DECLARE_HANDLE16(HCTX
); /* context handle */
45 DECLARE_HANDLE16(HWTHOOK
); /* hook handle */
47 /**********************************************************************/
49 typedef struct tagLOGCONTEXT16
{
50 char lcName
[LCNAMELEN
];
84 } LOGCONTEXT16
, *PLOGCONTEXT16
, *NPLOGCONTEXT16
, *LPLOGCONTEXT16
;
86 /**********************************************************************/
88 typedef BOOL16 (WINAPI
* WTENUMPROC16
)(HCTX16
, LPARAM
); /* changed CALLBACK->WINAPI, 1.1 */
89 typedef BOOL16 (WINAPI
* WTCONFIGPROC16
)(HCTX16
, HWND16
);
90 typedef LRESULT (WINAPI
* WTHOOKPROC16
)(INT16
, WPARAM16
, LPARAM
);
91 typedef WTHOOKPROC16
*LPWTHOOKPROC16
;
93 /***********************************************************************
96 UINT16 WINAPI
WTInfo16(UINT16 wCategory
, UINT16 nIndex
, LPVOID lpOutput
)
98 FIXME("(%hu, %hu, %p): stub\n", wCategory
, nIndex
, lpOutput
);
103 /***********************************************************************
106 HCTX16 WINAPI
WTOpen16(HWND16 hWnd
, LPLOGCONTEXT16 lpLogCtx
, BOOL16 fEnable
)
108 FIXME("(0x%04hx, %p, %hu): stub\n", hWnd
, lpLogCtx
, fEnable
);
113 /***********************************************************************
114 * WTClose (WINTAB.22)
116 BOOL16 WINAPI
WTClose16(HCTX16 hCtx
)
118 FIXME("(0x%04hx): stub\n", hCtx
);
123 /***********************************************************************
124 * WTPacketsGet (WINTAB.23)
126 INT16 WINAPI
WTPacketsGet16(HCTX16 hCtx
, INT16 cMaxPkts
, LPVOID lpPkts
)
128 FIXME("(0x%04hx, %hd, %p): stub\n", hCtx
, cMaxPkts
, lpPkts
);
133 /***********************************************************************
134 * WTPacket (WINTAB.24)
136 BOOL16 WINAPI
WTPacket16(HCTX16 hCtx
, UINT16 wSerial
, LPVOID lpPkt
)
138 FIXME("(0x%04hx, %hd, %p): stub\n", hCtx
, wSerial
, lpPkt
);
143 /***********************************************************************
144 * WTEnable (WINTAB.40)
146 BOOL16 WINAPI
WTEnable16(HCTX16 hCtx
, BOOL16 fEnable
)
148 FIXME("(0x%04hx, %hu): stub\n", hCtx
, fEnable
);
153 /***********************************************************************
154 * WTOverlap (WINTAB.41)
156 BOOL16 WINAPI
WTOverlap16(HCTX16 hCtx
, BOOL16 fToTop
)
158 FIXME("(0x%04hx, %hu): stub\n", hCtx
, fToTop
);
163 /***********************************************************************
164 * WTConfig (WINTAB.60)
166 BOOL16 WINAPI
WTConfig16(HCTX16 hCtx
, HWND16 hWnd
)
168 FIXME("(0x%04hx, 0x%04hx): stub\n", hCtx
, hWnd
);
173 /***********************************************************************
176 BOOL16 WINAPI
WTGet16(HCTX16 hCtx
, LPLOGCONTEXT16 lpLogCtx
)
178 FIXME("(0x%04hx, %p): stub\n", hCtx
, lpLogCtx
);
183 /***********************************************************************
186 BOOL16 WINAPI
WTSet16(HCTX16 hCtx
, LPLOGCONTEXT16 lpLogCtx
)
188 FIXME("(0x%04hx, %p): stub\n", hCtx
, lpLogCtx
);
193 /***********************************************************************
194 * WTExtGet (WINTAB.63)
196 BOOL16 WINAPI
WTExtGet16(HCTX16 hCtx
, UINT16 wExt
, LPVOID lpData
)
198 FIXME("(0x%04hx, %hu, %p): stub\n", hCtx
, wExt
, lpData
);
203 /***********************************************************************
204 * WTExtSet (WINTAB.64)
206 BOOL16 WINAPI
WTExtSet16(HCTX16 hCtx
, UINT16 wExt
, LPVOID lpData
)
208 FIXME("(0x%04hx, %hu, %p): stub\n", hCtx
, wExt
, lpData
);
213 /***********************************************************************
216 BOOL16 WINAPI
WTSave16(HCTX16 hCtx
, LPVOID lpSaveInfo
)
218 FIXME("(0x%04hx, %p): stub\n", hCtx
, lpSaveInfo
);
223 /***********************************************************************
224 * WTRestore (WINTAB.66)
226 HCTX16 WINAPI
WTRestore16(HWND16 hWnd
, LPVOID lpSaveInfo
, BOOL16 fEnable
)
228 FIXME("(0x%04hx, %p, %hu): stub\n", hWnd
, lpSaveInfo
, fEnable
);
233 /***********************************************************************
234 * WTPacketsPeek (WINTAB.80)
236 INT16 WINAPI
WTPacketsPeek16(HCTX16 hCtx
, INT16 cMaxPkts
, LPVOID lpPkts
)
238 FIXME("(0x%04hx, %hd, %p): stub\n", hCtx
, cMaxPkts
, lpPkts
);
243 /***********************************************************************
244 * WTDataGet (WINTAB.81)
246 INT16 WINAPI
WTDataGet16(HCTX16 hCtx
, UINT16 wBegin
, UINT16 wEnd
,
247 INT16 cMaxPkts
, LPVOID lpPkts
, LPINT16 lpNPkts
)
249 FIXME("(0x%04hx, %hu, %hu, %hd, %p, %p): stub\n",
250 hCtx
, wBegin
, wEnd
, cMaxPkts
, lpPkts
, lpNPkts
);
255 /***********************************************************************
256 * WTDataPeek (WINTAB.82)
258 INT16 WINAPI
WTDataPeek16(HCTX16 hCtx
, UINT16 wBegin
, UINT16 wEnd
,
259 INT16 cMaxPkts
, LPVOID lpPkts
, LPINT16 lpNPkts
)
261 FIXME("(0x%04hx, %hu, %hu, %hd, %p, %p): stub\n",
262 hCtx
, wBegin
, wEnd
, cMaxPkts
, lpPkts
, lpNPkts
);
267 /***********************************************************************
268 * WTQueuePackets (WINTAB.83)
272 DWORD WINAPI
WTQueuePackets16(HCTX16 hCtx
)
274 FIXME("(0x%04hx): stub\n", hCtx
);
279 /***********************************************************************
280 * WTQueuePacketsEx (WINTAB.200)
282 BOOL16 WINAPI
WTQueuePacketsEx16(HCTX16 hCtx
, UINT16
*lpOld
, UINT16
*lpNew
)
284 FIXME("(0x%04hx, %p, %p): stub\n", hCtx
, lpOld
, lpNew
);
289 /***********************************************************************
290 * WTQueueSizeGet (WINTAB.84)
292 INT16 WINAPI
WTQueueSizeGet16(HCTX16 hCtx
)
294 FIXME("(0x%04hx): stub\n", hCtx
);
299 /***********************************************************************
300 * WTQueueSizeSet (WINTAB.85)
302 BOOL16 WINAPI
WTQueueSizeSet16(HCTX16 hCtx
, INT16 nPkts
)
304 FIXME("(0x%04hx, %hd): stub\n", hCtx
, nPkts
);
309 /***********************************************************************
310 * WTMgrOpen (WINTAB.100)
312 HMGR16 WINAPI
WTMgrOpen16(HWND16 hWnd
, UINT16 wMsgBase
)
314 FIXME("(0x%04hx, %hu): stub\n", hWnd
, wMsgBase
);
319 /***********************************************************************
320 * WTMgrClose (WINTAB.101)
322 BOOL16 WINAPI
WTMgrClose16(HMGR16 hMgr
)
324 FIXME("(0x%04hx): stub\n", hMgr
);
329 /***********************************************************************
330 * WTMgrContextEnum (WINTAB.120)
332 BOOL16 WINAPI
WTMgrContextEnum16(HMGR16 hMgr
, WTENUMPROC16 lpEnumFunc
, LPARAM lParam
)
334 FIXME("(0x%04hx, %p, %ld): stub\n", hMgr
, lpEnumFunc
, lParam
);
339 /***********************************************************************
340 * WTMgrContextOwner (WINTAB.121)
342 HWND16 WINAPI
WTMgrContextOwner16(HMGR16 hMgr
, HCTX16 hCtx
)
344 FIXME("(0x%04hx, 0x%04hx): stub\n", hMgr
, hCtx
);
349 /***********************************************************************
350 * WTMgrDefContext (WINTAB.122)
352 HCTX16 WINAPI
WTMgrDefContext16(HMGR16 hMgr
, BOOL16 fSystem
)
354 FIXME("(0x%04hx, %hu): stub\n", hMgr
, fSystem
);
359 /***********************************************************************
360 * WTMgrDefContextEx (WINTAB.206)
364 HCTX16 WINAPI
WTMgrDefContextEx16(HMGR16 hMgr
, UINT16 wDevice
, BOOL16 fSystem
)
366 FIXME("(0x%04hx, %hu, %hu): stub\n", hMgr
, wDevice
, fSystem
);
371 /***********************************************************************
372 * WTMgrDeviceConfig (WINTAB.140)
374 UINT16 WINAPI
WTMgrDeviceConfig16(HMGR16 hMgr
, UINT16 wDevice
, HWND16 hWnd
)
376 FIXME("(0x%04hx, %hu, 0x%04hx): stub\n", hMgr
, wDevice
, hWnd
);
381 /***********************************************************************
382 * WTMgrConfigReplace (WINTAB.141)
386 BOOL16 WINAPI
WTMgrConfigReplace16(HMGR16 hMgr
, BOOL16 fInstall
,
387 WTCONFIGPROC16 lpConfigProc
)
389 FIXME("(0x%04hx, %hu, %p): stub\n", hMgr
, fInstall
, lpConfigProc
);
394 /***********************************************************************
395 * WTMgrConfigReplaceEx (WINTAB.202)
397 BOOL16 WINAPI
WTMgrConfigReplaceEx16(HMGR16 hMgr
, BOOL16 fInstall
,
398 LPSTR lpszModule
, LPSTR lpszCfgProc
)
400 FIXME("(0x%04hx, %hu, %s, %s): stub\n", hMgr
, fInstall
,
401 debugstr_a(lpszModule
), debugstr_a(lpszCfgProc
));
406 /***********************************************************************
407 * WTMgrPacketHook (WINTAB.160)
411 WTHOOKPROC16 WINAPI
WTMgrPacketHook16(HMGR16 hMgr
, BOOL16 fInstall
,
412 INT16 nType
, WTHOOKPROC16 lpFunc
)
414 FIXME("(0x%04hx, %hu, %hd, %p): stub\n", hMgr
, fInstall
, nType
, lpFunc
);
419 /***********************************************************************
420 * WTMgrPacketHookEx (WINTAB.203)
422 HWTHOOK16 WINAPI
WTMgrPacketHookEx16(HMGR16 hMgr
, INT16 nType
,
423 LPSTR lpszModule
, LPSTR lpszHookProc
)
425 FIXME("(0x%04hx, %hd, %s, %s): stub\n", hMgr
, nType
,
426 debugstr_a(lpszModule
), debugstr_a(lpszHookProc
));
431 /***********************************************************************
432 * WTMgrPacketUnhook (WINTAB.204)
434 BOOL16 WINAPI
WTMgrPacketUnhook16(HWTHOOK16 hHook
)
436 FIXME("(0x%04hx): stub\n", hHook
);
441 /***********************************************************************
442 * WTMgrPacketHookDefProc (WINTAB.161)
446 LRESULT WINAPI
WTMgrPacketHookDefProc16(INT16 nCode
, WPARAM16 wParam
,
447 LPARAM lParam
, LPWTHOOKPROC16 lplpFunc
)
449 FIXME("(%hd, %hu, %lu, %p): stub\n", nCode
, wParam
, lParam
, lplpFunc
);
454 /***********************************************************************
455 * WTMgrPacketHookNext (WINTAB.205)
457 LRESULT WINAPI
WTMgrPacketHookNext16(HWTHOOK16 hHook
, INT16 nCode
,
458 WPARAM16 wParam
, LPARAM lParam
)
460 FIXME("(0x%04hx, %hd, %hu, %lu): stub\n", hHook
, nCode
, wParam
, lParam
);
466 /***********************************************************************
467 * WTMgrExt (WINTAB.180)
469 BOOL16 WINAPI
WTMgrExt16(HMGR16 hMgr
, UINT16 wExt
, LPVOID lpData
)
471 FIXME("(0x%04hx, %hu, %p): stub\n", hMgr
, wExt
, lpData
);
476 /***********************************************************************
477 * WTMgrCsrEnable (WINTAB.181)
479 BOOL16 WINAPI
WTMgrCsrEnable16(HMGR16 hMgr
, UINT16 wCursor
, BOOL16 fEnable
)
481 FIXME("(0x%04hx, %hu, %hu): stub\n", hMgr
, wCursor
, fEnable
);
486 /***********************************************************************
487 * WTMgrCsrButtonMap (WINTAB.182)
489 BOOL16 WINAPI
WTMgrCsrButtonMap16(HMGR16 hMgr
, UINT16 wCursor
,
490 LPBYTE lpLogBtns
, LPBYTE lpSysBtns
)
492 FIXME("(0x%04hx, %hu, %p, %p): stub\n", hMgr
, wCursor
, lpLogBtns
, lpSysBtns
);
497 /***********************************************************************
498 * WTMgrCsrPressureBtnMarks (WINTAB.183)
500 * OBSOLETE IN WIN32! (But only according to documentation)
502 BOOL16 WINAPI
WTMgrCsrPressureBtnMarks16(HMGR16 hMgr
, UINT16 wCsr
,
503 DWORD dwNMarks
, DWORD dwTMarks
)
505 FIXME("(0x%04hx, %hu, %u, %u): stub\n", hMgr
, wCsr
, dwNMarks
, dwTMarks
);
510 /***********************************************************************
511 * WTMgrCsrPressureBtnMarksEx (WINTAB.201)
513 BOOL16 WINAPI
WTMgrCsrPressureBtnMarksEx16(HMGR16 hMgr
, UINT16 wCsr
,
514 UINT16
*lpNMarks
, UINT16
*lpTMarks
)
516 FIXME("(0x%04hx, %hu, %p, %p): stub\n", hMgr
, wCsr
, lpNMarks
, lpTMarks
);
521 /***********************************************************************
522 * WTMgrCsrPressureResponse (WINTAB.184)
524 BOOL16 WINAPI
WTMgrCsrPressureResponse16(HMGR16 hMgr
, UINT16 wCsr
,
525 UINT16
*lpNResp
, UINT16
*lpTResp
)
527 FIXME("(0x%04hx, %hu, %p, %p): stub\n", hMgr
, wCsr
, lpNResp
, lpTResp
);
532 /***********************************************************************
533 * WTMgrCsrExt (WINTAB.185)
535 BOOL16 WINAPI
WTMgrCsrExt16(HMGR16 hMgr
, UINT16 wCsr
, UINT16 wExt
, LPVOID lpData
)
537 FIXME("(0x%04hx, %hu, %hu, %p): stub\n", hMgr
, wCsr
, wExt
, lpData
);