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
0b27528c
Commit
0b27528c
authored
Jun 04, 2018
by
Louis Lenders
Committed by
Alexandre Julliard
Jun 05, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add stub for RegisterPointerDeviceNotifications.
Signed-off-by:
Louis Lenders
<
xerox.xerox2000x@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
99e81815
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
misc.c
dlls/user32/misc.c
+9
-0
user32.spec
dlls/user32/user32.spec
+1
-0
winuser.h
include/winuser.h
+1
-0
No files found.
dlls/user32/misc.c
View file @
0b27528c
...
...
@@ -837,6 +837,15 @@ LONG WINAPI GetDisplayConfigBufferSizes(UINT32 flags, UINT32 *num_path_info, UIN
return
ERROR_NOT_SUPPORTED
;
}
/**********************************************************************
* RegisterPointerDeviceNotifications [USER32.@]
*/
BOOL
WINAPI
RegisterPointerDeviceNotifications
(
HWND
hwnd
,
BOOL
notifyrange
)
{
FIXME
(
"(%p %d): stub
\n
"
,
hwnd
,
notifyrange
);
return
FALSE
;
}
static
const
WCHAR
imeW
[]
=
{
'I'
,
'M'
,
'E'
,
0
};
const
struct
builtin_class_descr
IME_builtin_class
=
{
...
...
dlls/user32/user32.spec
View file @
0b27528c
...
...
@@ -598,6 +598,7 @@
@ stdcall RegisterLogonProcess(long long)
# @ stub RegisterMessagePumpHook
@ stub RegisterNetworkCapabilities
@ stdcall RegisterPointerDeviceNotifications(long long)
@ stdcall RegisterPowerSettingNotification(long ptr long)
@ stdcall RegisterRawInputDevices(ptr long long)
@ stdcall RegisterServicesProcess(long)
...
...
include/winuser.h
View file @
0b27528c
...
...
@@ -4004,6 +4004,7 @@ WINUSERAPI HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE,LPVOID,DWORD);
WINUSERAPI
HDEVNOTIFY
WINAPI
RegisterDeviceNotificationW
(
HANDLE
,
LPVOID
,
DWORD
);
#define RegisterDeviceNotification WINELIB_NAME_AW(RegisterDeviceNotification)
WINUSERAPI
BOOL
WINAPI
RegisterHotKey
(
HWND
,
INT
,
UINT
,
UINT
);
WINUSERAPI
BOOL
WINAPI
RegisterPointerDeviceNotifications
(
HWND
,
BOOL
);
WINUSERAPI
HPOWERNOTIFY
WINAPI
RegisterPowerSettingNotification
(
HANDLE
,
LPCGUID
,
DWORD
);
WINUSERAPI
BOOL
WINAPI
RegisterRawInputDevices
(
PRAWINPUTDEVICE
,
UINT
,
UINT
);
WINUSERAPI
BOOL
WINAPI
RegisterShellHookWindow
(
HWND
);
...
...
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