user32: Add GetPointerTouchInfo(History) stubs.

Preventing Bloons TD 6 from crashing on touchscreen input.
This commit is contained in:
Rémi Bernon 2022-05-31 16:05:46 +02:00 committed by Alexandre Julliard
parent 8da21e083b
commit 8818fff766
2 changed files with 16 additions and 0 deletions

View file

@ -756,3 +756,17 @@ BOOL WINAPI SetGestureConfig( HWND hwnd, DWORD reserved, UINT count,
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
BOOL WINAPI GetPointerTouchInfo( UINT32 id, POINTER_TOUCH_INFO *info )
{
FIXME( "id %u, info %p stub!\n", id, info );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
BOOL WINAPI GetPointerTouchInfoHistory( UINT32 id, UINT32 *count, POINTER_TOUCH_INFO *info )
{
FIXME( "id %u, count %p, info %p stub!\n", id, count, info );
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}

View file

@ -360,6 +360,8 @@
@ stdcall GetPhysicalCursorPos(ptr)
@ stdcall GetPointerDevices(ptr ptr)
@ stdcall GetPointerType(long ptr)
@ stdcall GetPointerTouchInfo(long ptr)
@ stdcall GetPointerTouchInfoHistory(long ptr ptr)
@ stdcall GetPriorityClipboardFormat(ptr long) NtUserGetPriorityClipboardFormat
@ stdcall GetProcessDefaultLayout(ptr)
@ stdcall GetProcessDpiAwarenessInternal(long ptr)