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 f001254aa84..709d2f83793 100644 --- a/dlls/user32/input.c +++ b/dlls/user32/input.c @@ -750,6 +750,14 @@ BOOL WINAPI GetPointerDeviceProperties( HANDLE device, UINT32 *count, return FALSE; }
+BOOL WINAPI GetPointerDeviceRects( HANDLE device, RECT *device_rect, RECT *display_rect ) +{ + FIXME( "device %p, device_rect %p, display_rect %p stub!\n", + device, device_rect, display_rect ); + 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 2599dc610dd..29848b3ea0f 100644 --- a/dlls/user32/user32.spec +++ b/dlls/user32/user32.spec @@ -630,7 +630,7 @@ # @ stub GetPointerDeviceInputSpace # @ stub GetPointerDeviceOrientation @ stdcall GetPointerDeviceProperties(ptr ptr ptr) -# @ stub GetPointerDeviceRects +@ stdcall GetPointerDeviceRects(ptr ptr ptr) @ stdcall GetPointerDevices(ptr ptr) # @ stub GetPointerFrameInfo # @ stub GetPointerFrameInfoHistory