user32: Add a stub for RegisterTouchWindow.

This commit is contained in:
Austin English 2014-05-13 13:25:02 -05:00 committed by Alexandre Julliard
parent d2737dde80
commit 6458aca761
2 changed files with 11 additions and 0 deletions

View File

@ -573,6 +573,7 @@
@ stdcall RegisterShellHookWindow (long)
@ stdcall RegisterSystemThread(long long)
@ stdcall RegisterTasklist (long)
@ stdcall RegisterTouchWindow(long long)
# @ stub RegisterUserApiHook
@ stdcall RegisterWindowMessageA(str)
@ stdcall RegisterWindowMessageW(wstr)

View File

@ -3887,3 +3887,13 @@ LONG_PTR WINAPI SetWindowLongPtrA( HWND hwnd, INT offset, LONG_PTR newval )
{
return WIN_SetWindowLong( hwnd, offset, sizeof(LONG_PTR), newval, FALSE );
}
/*****************************************************************************
* RegisterTouchWindow (USER32.@)
*/
BOOL WINAPI RegisterTouchWindow(HWND hwnd, ULONG flags)
{
FIXME("(%p %08x): stub\n", hwnd, flags);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}