[PATCH v2 1/3] user32: Make RegisterPointerDeviceNotifications return TRUE to fake success

Fabian Maurer dark.shadow4 at web.de
Thu Jun 7 16:46:54 CDT 2018


Fixes bug 45284.

Signed-off-by: Fabian Maurer <dark.shadow4 at 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




More information about the wine-devel mailing list