From: Ignacy Kuchciński ignacykuchcinski@gmail.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=57489 --- 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 22c296cf213..f001254aa84 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -742,6 +742,14 @@ BOOL WINAPI SetGestureConfig( HWND hwnd, DWORD reserved, UINT count, return FALSE; }
+BOOL WINAPI GetPointerDeviceProperties( HANDLE device, UINT32 *count, + POINTER_DEVICE_PROPERTY *properties) +{ + FIXME( "device %p, count %p, info %p stub!\n", device, count, properties ); + SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); + return FALSE; +} + BOOL WINAPI GetPointerPenInfo( UINT32 id, POINTER_PEN_INFO *info ) { FIXME( "id %u, info %p stub!\n", id, info ); diff --git a/dlls/user32/user32.spec b/dlls/user32/user32.spec index 732ab323414..2599dc610dd 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -629,7 +629,7 @@ # @ stub GetPointerDeviceCursors # @ stub GetPointerDeviceInputSpace # @ stub GetPointerDeviceOrientation -# @ stub GetPointerDeviceProperties +@ stdcall GetPointerDeviceProperties(ptr ptr ptr) # @ stub GetPointerDeviceRects @ stdcall GetPointerDevices(ptr ptr) # @ stub GetPointerFrameInfo