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 OpenMutexW(long long wstr)
@ stdcall OpenProcess(long long long)
@ stub OpenProfileUserMapping
@ stdcall OpenProfileUserMapping()
@ stdcall OpenSemaphoreA(long long str)
@ stdcall OpenSemaphoreW(long long wstr)
@ stdcall OpenThread(long long long)

View File

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