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
68b255e5
Commit
68b255e5
authored
Mar 19, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Add stub implementations for {Register, Unregister}GPNotification.
parent
a9e4ced1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
userenv.spec
dlls/userenv/userenv.spec
+2
-0
userenv_main.c
dlls/userenv/userenv_main.c
+12
-0
No files found.
dlls/userenv/userenv.spec
View file @
68b255e5
...
...
@@ -9,4 +9,6 @@
@ stdcall GetUserProfileDirectoryW(ptr ptr ptr)
@ stdcall LoadUserProfileA(ptr ptr)
@ stub LoadUserProfileW
@ stdcall RegisterGPNotification(long long)
@ stub UnloadUserProfile
@ stdcall UnregisterGPNotification(long)
dlls/userenv/userenv_main.c
View file @
68b255e5
...
...
@@ -121,3 +121,15 @@ BOOL WINAPI LoadUserProfileA( HANDLE hToken, LPPROFILEINFOA lpProfileInfo )
lpProfileInfo
->
hProfile
=
HKEY_CURRENT_USER
;
return
TRUE
;
}
BOOL
WINAPI
RegisterGPNotification
(
HANDLE
event
,
BOOL
machine
)
{
FIXME
(
"%p %d
\n
"
,
event
,
machine
);
return
TRUE
;
}
BOOL
WINAPI
UnregisterGPNotification
(
HANDLE
event
)
{
FIXME
(
"%p
\n
"
,
event
);
return
TRUE
;
}
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