On 5/30/22 18:06, Alex Henrie wrote:
diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c index bca5648d5df..010b0c51727 100644 --- a/dlls/ntoskrnl.exe/ntoskrnl.c +++ b/dlls/ntoskrnl.exe/ntoskrnl.c @@ -4460,6 +4460,11 @@ void WINAPI KfRaiseIrql(KIRQL new, KIRQL *old) FIXME("new %u old %p: stub.\n", new, old); }
+void WINAPI KeLowerIrql(KIRQL new) +{
- FIXME("new %u: stub.\n", new);
+}
Ideally the code should also be guarded out with preprocessor directives on platforms other than x86_64, otherwise it's dead.