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
bd262c60
Commit
bd262c60
authored
Apr 07, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Added RegisterPowerSettingNotification() stub.
parent
ebdad92d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
misc.c
dlls/user32/misc.c
+9
-0
user32.spec
dlls/user32/user32.spec
+1
-0
winuser.h
include/winuser.h
+2
-0
No files found.
dlls/user32/misc.c
View file @
bd262c60
...
...
@@ -667,3 +667,12 @@ BOOL WINAPI UserHandleGrantAccess(HANDLE handle, HANDLE job, BOOL grant)
FIXME
(
"(%p,%p,%d): stub
\n
"
,
handle
,
job
,
grant
);
return
TRUE
;
}
/**********************************************************************
* RegisterPowerSettingNotification [USER32.@]
*/
HPOWERNOTIFY
WINAPI
RegisterPowerSettingNotification
(
HANDLE
recipient
,
const
GUID
*
guid
,
DWORD
flags
)
{
FIXME
(
"(%p,%s,%x): stub
\n
"
,
recipient
,
debugstr_guid
(
guid
),
flags
);
return
NULL
;
}
dlls/user32/user32.spec
View file @
bd262c60
...
...
@@ -567,6 +567,7 @@
@ stdcall RegisterLogonProcess(long long)
# @ stub RegisterMessagePumpHook
@ stub RegisterNetworkCapabilities
@ stdcall RegisterPowerSettingNotification(long ptr long)
@ stdcall RegisterRawInputDevices(ptr long long)
@ stdcall RegisterServicesProcess(long)
@ stdcall RegisterShellHookWindow (long)
...
...
include/winuser.h
View file @
bd262c60
...
...
@@ -91,6 +91,7 @@ DECL_WINELIB_TYPE_AW(WINSTAENUMPROC)
typedef
HANDLE
HDWP
;
typedef
void
*
HPOWERNOTIFY
;
#define UOI_FLAGS 1
#define UOI_NAME 2
...
...
@@ -3853,6 +3854,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
HPOWERNOTIFY
WINAPI
RegisterPowerSettingNotification
(
HANDLE
,
LPCGUID
,
DWORD
);
WINUSERAPI
BOOL
WINAPI
RegisterRawInputDevices
(
PRAWINPUTDEVICE
,
UINT
,
UINT
);
WINUSERAPI
UINT
WINAPI
RegisterWindowMessageA
(
LPCSTR
);
WINUSERAPI
UINT
WINAPI
RegisterWindowMessageW
(
LPCWSTR
);
...
...
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