1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

ntoskrnl: Add KeLowerIrql stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53076
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
This commit is contained in:
Alex Henrie 2022-05-30 17:13:59 -06:00 committed by Alexandre Julliard
parent ddca4eb838
commit f185a3acb9
3 changed files with 7 additions and 1 deletions

View File

@ -71,7 +71,7 @@
@ stdcall -arch=i386 KeAcquireSpinLock(ptr ptr)
@ stub KeFlushWriteBuffer
@ stdcall -arch=arm,arm64,i386 KeGetCurrentIrql()
@ stub KeLowerIrql
@ stdcall -arch=x86_64 KeLowerIrql(long) ntoskrnl.exe.KeLowerIrql
@ stdcall -ret64 KeQueryPerformanceCounter(ptr)
@ stub KeRaiseIrql
@ stub KeRaiseIrqlToDpcLevel

View File

@ -4462,6 +4462,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);
}
#endif
/*****************************************************

View File

@ -589,6 +589,7 @@
@ stub KeIsExecutingDpc
@ stdcall KeLeaveCriticalRegion()
@ stub KeLoaderBlock
@ stdcall -arch=x86_64 KeLowerIrql(long)
@ stub KeNumberProcessors
@ stub KeProfileInterrupt
@ stub KeProfileInterruptWithSource