Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
2e9ca462
Commit
2e9ca462
authored
May 15, 2017
by
Austin English
Committed by
Alexandre Julliard
May 17, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add GetPhysicalCursorPos/SetPhysicalCursorPos stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
146cf041
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
input.c
dlls/user32/input.c
+19
-0
user32.spec
dlls/user32/user32.spec
+2
-0
No files found.
dlls/user32/input.c
View file @
2e9ca462
...
@@ -285,6 +285,16 @@ BOOL WINAPI GetCursorInfo( PCURSORINFO pci )
...
@@ -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.@)
* SetCursorPos (USER32.@)
*/
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
SetCursorPos
(
INT
x
,
INT
y
)
BOOL
WINAPI
DECLSPEC_HOTPATCH
SetCursorPos
(
INT
x
,
INT
y
)
...
@@ -310,6 +320,15 @@ BOOL WINAPI DECLSPEC_HOTPATCH SetCursorPos( INT x, INT y )
...
@@ -310,6 +320,15 @@ BOOL WINAPI DECLSPEC_HOTPATCH SetCursorPos( INT x, INT y )
return
ret
;
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.@)
* SetCapture (USER32.@)
...
...
dlls/user32/user32.spec
View file @
2e9ca462
...
@@ -344,6 +344,7 @@
...
@@ -344,6 +344,7 @@
# @ stub GetNextQueueWindow
# @ stub GetNextQueueWindow
@ stdcall GetOpenClipboardWindow()
@ stdcall GetOpenClipboardWindow()
@ stdcall GetParent(long)
@ stdcall GetParent(long)
@ stdcall GetPhysicalCursorPos(ptr)
@ stdcall GetPriorityClipboardFormat(ptr long)
@ stdcall GetPriorityClipboardFormat(ptr long)
@ stdcall GetProcessDefaultLayout(ptr)
@ stdcall GetProcessDefaultLayout(ptr)
@ stdcall GetProcessWindowStation()
@ stdcall GetProcessWindowStation()
...
@@ -658,6 +659,7 @@
...
@@ -658,6 +659,7 @@
@ stdcall SetMessageExtraInfo(long)
@ stdcall SetMessageExtraInfo(long)
@ stdcall SetMessageQueue(long)
@ stdcall SetMessageQueue(long)
@ stdcall SetParent(long long)
@ stdcall SetParent(long long)
@ stdcall SetPhysicalCursorPos(long long)
@ stdcall SetProcessDefaultLayout(long)
@ stdcall SetProcessDefaultLayout(long)
@ stdcall SetProcessDPIAware()
@ stdcall SetProcessDPIAware()
@ stdcall SetProcessWindowStation(long)
@ stdcall SetProcessWindowStation(long)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment