From: Hecheng Yu <kde-yyds(a)qq.com> Remove stub and forward to win32u implementation. Applications like Chromium need this API to get detailed touch info. --- dlls/user32/input.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dlls/user32/input.c b/dlls/user32/input.c index f79ef6addc4..cf1664a91e2 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -774,11 +774,12 @@ BOOL WINAPI GetPointerPenInfo( UINT32 id, POINTER_PEN_INFO *info ) return FALSE; } +/*********************************************************************** + * GetPointerTouchInfo (USER32.@) + */ 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; + return NtUserGetPointerTouchInfo( id, info ); } BOOL WINAPI GetRawPointerDeviceData( UINT32 id, UINT32 hist_count, UINT32 prop_count, -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9628