[pkg-wine-party] [wine] 48/465: user32: Add UnregisterTouchWindow stub.
Michael Gilbert
mgilbert at moszumanska.debian.org
Sun Sep 17 19:07:41 UTC 2017
This is an automated email from the git hooks/post-receive script.
mgilbert pushed a commit to branch master
in repository wine.
commit 9d6bcf3c8c1070903d331d4a2c7a05a797399430
Author: Austin English <austinenglish at gmail.com>
Date: Mon Aug 7 14:04:07 2017 -0500
user32: Add UnregisterTouchWindow stub.
Signed-off-by: Austin English <austinenglish at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
---
dlls/user32/user32.spec | 1 +
dlls/user32/win.c | 10 ++++++++++
include/winuser.h | 1 +
3 files changed, 12 insertions(+)
diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec
index 4514877..e5ab049 100644
--- a/dlls/user32/user32.spec
+++ b/dlls/user32/user32.spec
@@ -751,6 +751,7 @@
@ stdcall UnregisterHotKey(long long)
# @ stub UnregisterMessagePumpHook
@ stdcall UnregisterPowerSettingNotification(ptr)
+@ stdcall UnregisterTouchWindow(long)
# @ stub UnregisterUserApiHook
@ stdcall UpdateLayeredWindow(long long ptr ptr long ptr long ptr long)
@ stdcall UpdateLayeredWindowIndirect(long ptr)
diff --git a/dlls/user32/win.c b/dlls/user32/win.c
index cbf2237..03d9ece 100644
--- a/dlls/user32/win.c
+++ b/dlls/user32/win.c
@@ -3986,3 +3986,13 @@ BOOL WINAPI RegisterTouchWindow(HWND hwnd, ULONG flags)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
+
+/*****************************************************************************
+ * UnregisterTouchWindow (USER32.@)
+ */
+BOOL WINAPI UnregisterTouchWindow(HWND hwnd)
+{
+ FIXME("(%p): stub\n", hwnd);
+ SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
+ return FALSE;
+}
diff --git a/include/winuser.h b/include/winuser.h
index ad786f3..6ef4c77 100644
--- a/include/winuser.h
+++ b/include/winuser.h
@@ -4103,6 +4103,7 @@ WINUSERAPI BOOL WINAPI UnregisterClassW(LPCWSTR,HINSTANCE);
WINUSERAPI BOOL WINAPI UnregisterDeviceNotification(HDEVNOTIFY);
WINUSERAPI BOOL WINAPI UnregisterHotKey(HWND,INT);
WINUSERAPI BOOL WINAPI UnregisterPowerSettingNotification(HPOWERNOTIFY);
+WINUSERAPI BOOL WINAPI UnregisterTouchWindow(HWND);
WINUSERAPI BOOL WINAPI UpdateWindow(HWND);
WINUSERAPI BOOL WINAPI UserHandleGrantAccess(HANDLE,HANDLE,BOOL);
WINUSERAPI UINT WINAPI UserRealizePalette(HDC);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git
More information about the pkg-wine-party
mailing list