From: Fabian Maurer <dark.shadow4@web.de>
Subject: [PATCH 1/3] user32: Make RegisterPointerDeviceNotifications return TRUE to fake success
Message-Id: <20180607203906.16851-1-dark.shadow4@web.de>
Date: Thu,  7 Jun 2018 22:39:04 +0200

Fixes bug 45284.

Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
---
 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 be4b71a4bc..c3f4030a90 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};

-- 
2.17.1