userenv: Add a stub for UnloadUserProfile.

oldstable
Rob Shearman 2007-09-20 22:58:59 +01:00 committed by Alexandre Julliard
parent f34cb461e7
commit ac7e221c20
3 changed files with 8 additions and 1 deletions

View File

@ -10,5 +10,5 @@
@ stdcall LoadUserProfileA(ptr ptr)
@ stub LoadUserProfileW
@ stdcall RegisterGPNotification(long long)
@ stub UnloadUserProfile
@ stdcall UnloadUserProfile(ptr ptr)
@ stdcall UnregisterGPNotification(long)

View File

@ -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;
}

View File

@ -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