Commit ac7e221c authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

userenv: Add a stub for UnloadUserProfile.

parent f34cb461
...@@ -10,5 +10,5 @@ ...@@ -10,5 +10,5 @@
@ stdcall LoadUserProfileA(ptr ptr) @ stdcall LoadUserProfileA(ptr ptr)
@ stub LoadUserProfileW @ stub LoadUserProfileW
@ stdcall RegisterGPNotification(long long) @ stdcall RegisterGPNotification(long long)
@ stub UnloadUserProfile @ stdcall UnloadUserProfile(ptr ptr)
@ stdcall UnregisterGPNotification(long) @ stdcall UnregisterGPNotification(long)
...@@ -128,3 +128,9 @@ BOOL WINAPI UnregisterGPNotification( HANDLE event ) ...@@ -128,3 +128,9 @@ BOOL WINAPI UnregisterGPNotification( HANDLE event )
FIXME("%p\n", event ); FIXME("%p\n", event );
return TRUE; return TRUE;
} }
BOOL WINAPI UnloadUserProfile( HANDLE hToken, HANDLE hProfile )
{
FIXME("(%p, %p): stub\n", hToken, hProfile);
return FALSE;
}
...@@ -45,6 +45,7 @@ BOOL WINAPI LoadUserProfileA(HANDLE,LPPROFILEINFOA); ...@@ -45,6 +45,7 @@ BOOL WINAPI LoadUserProfileA(HANDLE,LPPROFILEINFOA);
BOOL WINAPI LoadUserProfileW(HANDLE,LPPROFILEINFOW); BOOL WINAPI LoadUserProfileW(HANDLE,LPPROFILEINFOW);
#define LoadUserProfile WINELIB_NAME_AW(LoadUserProfile) #define LoadUserProfile WINELIB_NAME_AW(LoadUserProfile)
BOOL WINAPI RegisterGPNotification(HANDLE,BOOL); BOOL WINAPI RegisterGPNotification(HANDLE,BOOL);
BOOL WINAPI UnloadUserProfile(HANDLE,HANDLE);
BOOL WINAPI UnregisterGPNotification(HANDLE); BOOL WINAPI UnregisterGPNotification(HANDLE);
#ifdef __cplusplus #ifdef __cplusplus
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment