From: Hecheng Yu <kde-yyds(a)qq.com> Qt5 checks for presence of this API before enabling WM_POINTER support. A stub will satisfy the check. --- dlls/user32/input.c | 9 +++++++++ dlls/user32/user32.spec | 1 + 2 files changed, 10 insertions(+) diff --git a/dlls/user32/input.c b/dlls/user32/input.c index 12f336403f5..f79ef6addc4 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -807,6 +807,15 @@ BOOL WINAPI GetPointerFrameTouchInfoHistory( UINT32 id, UINT32 *entriesCount, UI return FALSE; } +BOOL WINAPI GetPointerPenInfoHistory( UINT32 id, UINT32 *count, POINTER_PEN_INFO *info ) +{ + FIXME( "id %u, count %p, info %p stub!\n", + id, count, info ); + if (count) *count = 0; + SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); + return FALSE; +} + /******************************************************************* * GetActiveWindow (USER32.@) */ diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index ea8c2266c18..3fa2a342e9f 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -640,6 +640,7 @@ # @ stub GetPointerFrameTouchInfo @ stdcall GetPointerFrameTouchInfoHistory(long ptr ptr ptr) @ stdcall GetPointerInfo(long ptr) +@ stdcall GetPointerPenInfoHistory(long ptr ptr) # @ stub GetPointerInfoHistory # @ stub GetPointerInputTransform @ stdcall GetPointerPenInfo(long ptr) -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9628