Commit bafb181c authored by Etaash Mathamsetty's avatar Etaash Mathamsetty Committed by Alexandre Julliard

ntoskrnl.exe: Implement KeAreAllApcsDisabled.

Required for vgk.sys (vanguard anti-cheat).
parent 2bdd7d37
......@@ -3534,6 +3534,14 @@ BOOLEAN WINAPI KeAreApcsDisabled(void)
}
/***********************************************************************
* KeAreAllApcsDisabled (NTOSKRNL.@)
*/
BOOLEAN WINAPI KeAreAllApcsDisabled(void)
{
return KeAreApcsDisabled();
}
/***********************************************************************
* KeBugCheck (NTOSKRNL.@)
*/
void WINAPI KeBugCheck(ULONG code)
......
......@@ -532,6 +532,7 @@
@ stdcall -arch=!i386 KeAcquireSpinLockRaiseToDpc(ptr)
@ stub KeAddSystemServiceTable
@ stdcall KeAlertThread(ptr long)
@ stdcall KeAreAllApcsDisabled()
@ stdcall KeAreApcsDisabled()
@ stub KeAttachProcess
@ stdcall KeBugCheck(long)
......
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