user32: Add GetPhysicalCursorPos/SetPhysicalCursorPos stubs.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
146cf041d9
commit
2e9ca4626e
|
@ -284,6 +284,16 @@ BOOL WINAPI GetCursorInfo( PCURSORINFO pci )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* GetPhysicalCursorPos (USER32.@)
|
||||
*/
|
||||
|
||||
BOOL WINAPI GetPhysicalCursorPos(POINT *point)
|
||||
{
|
||||
FIXME("(%p) semi-stub: forwarding to GetCursorPos\n", point);
|
||||
return GetCursorPos(point);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetCursorPos (USER32.@)
|
||||
*/
|
||||
|
@ -310,6 +320,15 @@ BOOL WINAPI DECLSPEC_HOTPATCH SetCursorPos( INT x, INT y )
|
|||
return ret;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetPhysicalCursorPos (USER32.@)
|
||||
*/
|
||||
|
||||
BOOL WINAPI SetPhysicalCursorPos(INT x, INT y)
|
||||
{
|
||||
FIXME("(%u %u) semi-stub: forwarding to SetCursorPos\n", x, y);
|
||||
return SetCursorPos(x, y);
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* SetCapture (USER32.@)
|
||||
|
|
|
@ -344,6 +344,7 @@
|
|||
# @ stub GetNextQueueWindow
|
||||
@ stdcall GetOpenClipboardWindow()
|
||||
@ stdcall GetParent(long)
|
||||
@ stdcall GetPhysicalCursorPos(ptr)
|
||||
@ stdcall GetPriorityClipboardFormat(ptr long)
|
||||
@ stdcall GetProcessDefaultLayout(ptr)
|
||||
@ stdcall GetProcessWindowStation()
|
||||
|
@ -658,6 +659,7 @@
|
|||
@ stdcall SetMessageExtraInfo(long)
|
||||
@ stdcall SetMessageQueue(long)
|
||||
@ stdcall SetParent(long long)
|
||||
@ stdcall SetPhysicalCursorPos(long long)
|
||||
@ stdcall SetProcessDefaultLayout(long)
|
||||
@ stdcall SetProcessDPIAware()
|
||||
@ stdcall SetProcessWindowStation(long)
|
||||
|
|
Loading…
Reference in New Issue