Commit cb929831 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

user32: Add RegisterTouchHitTestingWindow stub.

parent 66180389
......@@ -863,6 +863,15 @@ BOOL WINAPI GetPointerDevices(UINT32 *device_count, POINTER_DEVICE_INFO *devices
return TRUE;
}
/**********************************************************************
* RegisterTouchHitTestingWindow [USER32.@]
*/
BOOL WINAPI RegisterTouchHitTestingWindow(HWND hwnd, ULONG value)
{
FIXME("(%p %d): stub\n", hwnd, value);
return TRUE;
}
static const WCHAR imeW[] = {'I','M','E',0};
const struct builtin_class_descr IME_builtin_class =
......
......@@ -606,6 +606,7 @@
@ stdcall RegisterShellHookWindow (long)
@ stdcall RegisterSystemThread(long long)
@ stdcall RegisterTasklist (long)
@ stdcall RegisterTouchHitTestingWindow(long long)
@ stdcall RegisterTouchWindow(long long)
# @ stub RegisterUserApiHook
@ stdcall RegisterWindowMessageA(str)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment