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
4814d67e
Commit
4814d67e
authored
Jul 25, 2009
by
Austin English
Committed by
Alexandre Julliard
Aug 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Add a stub for LoadUserProfileW.
parent
66e83d21
Hide whitespace changes
Inline
Side-by-side
Showing
2 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
+7
-0
No files found.
dlls/userenv/userenv.spec
View file @
4814d67e
...
...
@@ -8,7 +8,7 @@
@ stdcall GetUserProfileDirectoryA(ptr ptr ptr)
@ stdcall GetUserProfileDirectoryW(ptr ptr ptr)
@ stdcall LoadUserProfileA(ptr ptr)
@ st
ub LoadUserProfileW
@ st
dcall LoadUserProfileW(ptr ptr)
@ stdcall RegisterGPNotification(long long)
@ stdcall UnloadUserProfile(ptr ptr)
@ stdcall UnregisterGPNotification(long)
dlls/userenv/userenv_main.c
View file @
4814d67e
...
...
@@ -129,6 +129,13 @@ BOOL WINAPI LoadUserProfileA( HANDLE hToken, LPPROFILEINFOA lpProfileInfo )
return
TRUE
;
}
BOOL
WINAPI
LoadUserProfileW
(
HANDLE
hToken
,
LPPROFILEINFOW
lpProfileInfo
)
{
FIXME
(
"%p %p
\n
"
,
hToken
,
lpProfileInfo
);
lpProfileInfo
->
hProfile
=
HKEY_CURRENT_USER
;
return
TRUE
;
}
BOOL
WINAPI
RegisterGPNotification
(
HANDLE
event
,
BOOL
machine
)
{
FIXME
(
"%p %d
\n
"
,
event
,
machine
);
...
...
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