Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
9a95f102
Commit
9a95f102
authored
Apr 11, 2018
by
Józef Kucia
Committed by
Alexandre Julliard
Apr 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add stub for EnableMouseInPointer().
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8ee5d18b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.spec
...ter-l1-1-0/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.spec
+1
-1
input.c
dlls/user32/input.c
+11
-0
user32.spec
dlls/user32/user32.spec
+1
-0
No files found.
dlls/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0/api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.spec
View file @
9a95f102
@ st
ub
EnableMouseInPointer
@ st
dcall EnableMouseInPointer(long) user32.
EnableMouseInPointer
@ stub GetCurrentInputMessageSource
@ stub GetPointerCursorId
@ stub GetPointerDevice
...
...
dlls/user32/input.c
View file @
9a95f102
...
...
@@ -1514,3 +1514,14 @@ int WINAPI GetMouseMovePointsEx(UINT size, LPMOUSEMOVEPOINT ptin, LPMOUSEMOVEPOI
SetLastError
(
ERROR_POINT_NOT_FOUND
);
return
-
1
;
}
/***********************************************************************
* EnableMouseInPointer (USER32.@)
*/
BOOL
WINAPI
EnableMouseInPointer
(
BOOL
enable
)
{
FIXME
(
"(%#x) stub
\n
"
,
enable
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/user32/user32.spec
View file @
9a95f102
...
...
@@ -203,6 +203,7 @@
@ stdcall EditWndProc(long long long long) EditWndProcA
@ stdcall EmptyClipboard()
@ stdcall EnableMenuItem(long long long)
@ stdcall EnableMouseInPointer(long)
@ stdcall EnableScrollBar(long long long)
@ stdcall EnableWindow(long long)
@ stdcall EndDeferWindowPos(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