kernel32: Add a stub for OpenProfileUserMapping.

This commit is contained in:
Austin English 2009-01-27 23:44:20 -06:00 committed by Alexandre Julliard
parent 271e3bbad4
commit eb877e4421
2 changed files with 10 additions and 1 deletions

View File

@ -835,7 +835,7 @@
@ stdcall OpenMutexA(long long str) @ stdcall OpenMutexA(long long str)
@ stdcall OpenMutexW(long long wstr) @ stdcall OpenMutexW(long long wstr)
@ stdcall OpenProcess(long long long) @ stdcall OpenProcess(long long long)
@ stub OpenProfileUserMapping @ stdcall OpenProfileUserMapping()
@ stdcall OpenSemaphoreA(long long str) @ stdcall OpenSemaphoreA(long long str)
@ stdcall OpenSemaphoreW(long long wstr) @ stdcall OpenSemaphoreW(long long wstr)
@ stdcall OpenThread(long long long) @ stdcall OpenThread(long long long)

View File

@ -1849,6 +1849,15 @@ void WINAPI WriteOutProfiles16(void)
RtlLeaveCriticalSection( &PROFILE_CritSect ); RtlLeaveCriticalSection( &PROFILE_CritSect );
} }
/***********************************************************************
* OpenProfileUserMapping (KERNEL32.@)
*/
BOOL WINAPI OpenProfileUserMapping(void) {
FIXME("(), stub!\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*********************************************************************** /***********************************************************************
* CloseProfileUserMapping (KERNEL32.@) * CloseProfileUserMapping (KERNEL32.@)
*/ */