Fabian Maurer : user32: Make RegisterPointerDeviceNotifications return TRUE to fake success.

Alexandre Julliard julliard at winehq.org
Mon Jun 11 13:10:49 CDT 2018


Module: wine
Branch: master
Commit: 6b59f750cd344d15d1309efef915ba703a1937d0
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=6b59f750cd344d15d1309efef915ba703a1937d0

Author: Fabian Maurer <dark.shadow4 at web.de>
Date:   Thu Jun  7 23:46:54 2018 +0200

user32: Make RegisterPointerDeviceNotifications return TRUE to fake success.

Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/user32/misc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/user32/misc.c b/dlls/user32/misc.c
index be4b71a..c3f4030 100644
--- a/dlls/user32/misc.c
+++ b/dlls/user32/misc.c
@@ -843,7 +843,7 @@ LONG WINAPI GetDisplayConfigBufferSizes(UINT32 flags, UINT32 *num_path_info, UIN
 BOOL WINAPI RegisterPointerDeviceNotifications(HWND hwnd, BOOL notifyrange)
 {
     FIXME("(%p %d): stub\n", hwnd, notifyrange);
-    return FALSE;
+    return TRUE;
 }
 
 static const WCHAR imeW[] = {'I','M','E',0};




More information about the wine-cvs mailing list