April 15, 2026
9:57 a.m.
Rémi Bernon (@rbernon) commented about dlls/user32/input.c:
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; + TRACE( "device %p, device_rect %p, display_rect %p\n", device, device_rect, display_rect ); + return NtUserGetPointerDeviceRects( device, device_rect, display_rect ); }
If this is a direct 1-1 call to the syscall we don't need a user32 function and it should just be forwarded in user32.spec. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10649#note_136262