user32: Make RegisterPointerDeviceNotifications return TRUE to fake success.

Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Fabian Maurer 2018-06-07 23:46:54 +02:00 committed by Alexandre Julliard
parent 9ebc4dfd6a
commit 6b59f750cd
1 changed files with 1 additions and 1 deletions

View File

@ -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};