Commit 2e9ca462 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

user32: Add GetPhysicalCursorPos/SetPhysicalCursorPos stubs.

parent 146cf041
......@@ -285,6 +285,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.@)
*/
BOOL WINAPI DECLSPEC_HOTPATCH SetCursorPos( INT x, INT y )
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment