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:
parent
496447f03b
commit
80c23190f8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue