On Mon May 30 23:09:19 2022 +0000, **** wrote:
Zebediah Figura replied on the mailing list:
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.
Great point. I've added an `#ifdef __x86_64__` block around the two functions as requested.