Commit 80c23190 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ntoskrnl.exe: Add KeEnterGuardedRegion and KeLeaveGuardedRegion stubs.

parent 496447f0
......@@ -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");
}
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment