ntoskrnl.exe: Add KeEnterGuardedRegion and KeLeaveGuardedRegion stubs.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2019-01-31 16:12:50 +01:00 committed by Alexandre Julliard
parent 496447f03b
commit 80c23190f8
2 changed files with 18 additions and 0 deletions

View File

@ -3940,3 +3940,19 @@ NTSTATUS WINAPI MmCopyVirtualMemory(PEPROCESS fromprocess, PVOID fromaddress, PE
FIXME("stub: %p %p %p %p %lu %d %p\n", fromprocess, fromaddress, toprocess, toaddress, bufsize, mode, copied);
return STATUS_NOT_IMPLEMENTED;
}
/*********************************************************************
* KeEnterGuardedRegion (NTOSKRNL.@)
*/
void WINAPI KeEnterGuardedRegion(void)
{
FIXME("\n");
}
/*********************************************************************
* KeLeaveGuardedRegion (NTOSKRNL.@)
*/
void WINAPI KeLeaveGuardedRegion(void)
{
FIXME("\n");
}

View File

@ -43,6 +43,8 @@
@ stdcall -norelay IofCompleteRequest(ptr long)
@ stdcall -arch=arm,arm64,x86_64 KeAcquireInStackQueuedSpinLock(ptr ptr)
@ stdcall -norelay KeAcquireInStackQueuedSpinLockAtDpcLevel(ptr ptr)
@ stdcall KeEnterGuardedRegion()
@ stdcall KeLeaveGuardedRegion()
@ stdcall -arch=arm,arm64,x86_64 KeReleaseInStackQueuedSpinLock(ptr)
@ stdcall -norelay KeReleaseInStackQueuedSpinLockFromDpcLevel(ptr)
@ stub KeSetTimeUpdateNotifyRoutine