kernel32: Add a stub for OpenProfileUserMapping.
This commit is contained in:
parent
271e3bbad4
commit
eb877e4421
|
@ -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)
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue