Module: wine Branch: master Commit: f11713aa586d1d0829ac0c1c66d186f3b9495637 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f11713aa586d1d0829ac0c1c66...
Author: Francois Gouget fgouget@free.fr Date: Mon Feb 4 23:59:55 2008 +0100
winex11.drv: Add some API documentation stubs to make winapi_check happy.
---
dlls/winex11.drv/wintab.c | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/dlls/winex11.drv/wintab.c b/dlls/winex11.drv/wintab.c index 0987129..da18ce0 100644 --- a/dlls/winex11.drv/wintab.c +++ b/dlls/winex11.drv/wintab.c @@ -436,6 +436,9 @@ static BOOL is_pad(const char *name, const char *type) }
+/*********************************************************************** + * X11DRV_LoadTabletInfo (X11DRV.@) + */ void X11DRV_LoadTabletInfo(HWND hwnddefault) { const WCHAR SZ_CONTEXT_NAME[] = {'W','i','n','e',' ','T','a','b','l','e','t',' ','C','o','n','t','e','x','t',0}; @@ -922,6 +925,9 @@ static void proximity_event( HWND hwnd, XEvent *event ) SendMessageW(hwndTabletDefault, WT_PROXIMITY, (event->type == proximity_in_type), (LPARAM)hwnd); }
+/*********************************************************************** + * X11DRV_AttachEventQueueToTablet (X11DRV.@) + */ int X11DRV_AttachEventQueueToTablet(HWND hOwner) { struct x11drv_thread_data *data = x11drv_thread_data(); @@ -999,6 +1005,9 @@ int X11DRV_AttachEventQueueToTablet(HWND hOwner) return 0; }
+/*********************************************************************** + * X11DRV_GetCurrentPacket (X11DRV.@) + */ int X11DRV_GetCurrentPacket(LPWTPACKET *packet) { memcpy(packet,&gMsgPacket,sizeof(WTPACKET));