From: Hecheng Yu <kde-yyds(a)qq.com> Forward GetPointerFrameTouchInfo to win32u implementation. Qt-based applications need this API for multi-touch support. --- dlls/user32/input.c | 8 ++++++++ dlls/user32/user32.spec | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/dlls/user32/input.c b/dlls/user32/input.c index cf1664a91e2..e1db397de8e 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -782,6 +782,14 @@ BOOL WINAPI GetPointerTouchInfo( UINT32 id, POINTER_TOUCH_INFO *info ) return NtUserGetPointerTouchInfo( id, info ); } +/*********************************************************************** + * GetPointerFrameTouchInfo (USER32.@) + */ +BOOL WINAPI GetPointerFrameTouchInfo( UINT32 id, UINT32 *count, POINTER_TOUCH_INFO *info ) +{ + return NtUserGetPointerFrameTouchInfo( id, count, info ); +} + BOOL WINAPI GetRawPointerDeviceData( UINT32 id, UINT32 hist_count, UINT32 prop_count, POINTER_DEVICE_PROPERTY *properties, LONG *values ) { diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 3fa2a342e9f..6dfe7d1cf06 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -637,7 +637,7 @@ # @ stub GetPointerFramePenInfo # @ stub GetPointerFramePenInfoHistory # @ stub GetPointerFrameTimes -# @ stub GetPointerFrameTouchInfo +@ stdcall GetPointerFrameTouchInfo(long ptr ptr) @ stdcall GetPointerFrameTouchInfoHistory(long ptr ptr ptr) @ stdcall GetPointerInfo(long ptr) @ stdcall GetPointerPenInfoHistory(long ptr ptr) -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9628