From: Ignacy Kuchciński ignacykuchcinski@gmail.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57489 --- dlls/user32/input.c | 7 +++++++ dlls/user32/user32.spec | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/dlls/user32/input.c b/dlls/user32/input.c index f7ef140b3be..22c296cf213 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -742,6 +742,13 @@ BOOL WINAPI SetGestureConfig( HWND hwnd, DWORD reserved, UINT count, return FALSE; }
+BOOL WINAPI GetPointerPenInfo( UINT32 id, POINTER_PEN_INFO *info ) +{ + FIXME( "id %u, info %p stub!\n", id, info ); + 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 ); diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 494c8b7a983..b6e85a37982 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -642,7 +642,7 @@ @ stdcall GetPointerInfo(long ptr) # @ stub GetPointerInfoHistory # @ stub GetPointerInputTransform -# @ stub GetPointerPenInfo +@ stdcall GetPointerPenInfo(long ptr) # @ stub GetPointerPenInfoHistory @ stdcall GetPointerTouchInfo(long ptr) @ stdcall GetPointerTouchInfoHistory(long ptr ptr)