userenv: Add a stub for LoadUserProfileW.
This commit is contained in:
parent
66e83d2156
commit
4814d67ed5
|
@ -8,7 +8,7 @@
|
|||
@ stdcall GetUserProfileDirectoryA(ptr ptr ptr)
|
||||
@ stdcall GetUserProfileDirectoryW(ptr ptr ptr)
|
||||
@ stdcall LoadUserProfileA(ptr ptr)
|
||||
@ stub LoadUserProfileW
|
||||
@ stdcall LoadUserProfileW(ptr ptr)
|
||||
@ stdcall RegisterGPNotification(long long)
|
||||
@ stdcall UnloadUserProfile(ptr ptr)
|
||||
@ stdcall UnregisterGPNotification(long)
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue