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
ac7e221c
Commit
ac7e221c
authored
Sep 20, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Sep 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Add a stub for UnloadUserProfile.
parent
f34cb461
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
userenv.spec
dlls/userenv/userenv.spec
+1
-1
userenv_main.c
dlls/userenv/userenv_main.c
+6
-0
userenv.h
include/userenv.h
+1
-0
No files found.
dlls/userenv/userenv.spec
View file @
ac7e221c
...
...
@@ -10,5 +10,5 @@
@ stdcall LoadUserProfileA(ptr ptr)
@ stub LoadUserProfileW
@ stdcall RegisterGPNotification(long long)
@ st
ub UnloadUserProfile
@ st
dcall UnloadUserProfile(ptr ptr)
@ stdcall UnregisterGPNotification(long)
dlls/userenv/userenv_main.c
View file @
ac7e221c
...
...
@@ -128,3 +128,9 @@ BOOL WINAPI UnregisterGPNotification( HANDLE event )
FIXME
(
"%p
\n
"
,
event
);
return
TRUE
;
}
BOOL
WINAPI
UnloadUserProfile
(
HANDLE
hToken
,
HANDLE
hProfile
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
hToken
,
hProfile
);
return
FALSE
;
}
include/userenv.h
View file @
ac7e221c
...
...
@@ -45,6 +45,7 @@ BOOL WINAPI LoadUserProfileA(HANDLE,LPPROFILEINFOA);
BOOL
WINAPI
LoadUserProfileW
(
HANDLE
,
LPPROFILEINFOW
);
#define LoadUserProfile WINELIB_NAME_AW(LoadUserProfile)
BOOL
WINAPI
RegisterGPNotification
(
HANDLE
,
BOOL
);
BOOL
WINAPI
UnloadUserProfile
(
HANDLE
,
HANDLE
);
BOOL
WINAPI
UnregisterGPNotification
(
HANDLE
);
#ifdef __cplusplus
...
...
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