Commit f185a3ac authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

ntoskrnl: Add KeLowerIrql stub.

parent ddca4eb8
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
@ stdcall -arch=i386 KeAcquireSpinLock(ptr ptr) @ stdcall -arch=i386 KeAcquireSpinLock(ptr ptr)
@ stub KeFlushWriteBuffer @ stub KeFlushWriteBuffer
@ stdcall -arch=arm,arm64,i386 KeGetCurrentIrql() @ stdcall -arch=arm,arm64,i386 KeGetCurrentIrql()
@ stub KeLowerIrql @ stdcall -arch=x86_64 KeLowerIrql(long) ntoskrnl.exe.KeLowerIrql
@ stdcall -ret64 KeQueryPerformanceCounter(ptr) @ stdcall -ret64 KeQueryPerformanceCounter(ptr)
@ stub KeRaiseIrql @ stub KeRaiseIrql
@ stub KeRaiseIrqlToDpcLevel @ stub KeRaiseIrqlToDpcLevel
......
...@@ -4462,6 +4462,11 @@ void WINAPI KfRaiseIrql(KIRQL new, KIRQL *old) ...@@ -4462,6 +4462,11 @@ void WINAPI KfRaiseIrql(KIRQL new, KIRQL *old)
FIXME("new %u old %p: stub.\n", new, old); FIXME("new %u old %p: stub.\n", new, old);
} }
void WINAPI KeLowerIrql(KIRQL new)
{
FIXME("new %u: stub.\n", new);
}
#endif #endif
/***************************************************** /*****************************************************
......
...@@ -589,6 +589,7 @@ ...@@ -589,6 +589,7 @@
@ stub KeIsExecutingDpc @ stub KeIsExecutingDpc
@ stdcall KeLeaveCriticalRegion() @ stdcall KeLeaveCriticalRegion()
@ stub KeLoaderBlock @ stub KeLoaderBlock
@ stdcall -arch=x86_64 KeLowerIrql(long)
@ stub KeNumberProcessors @ stub KeNumberProcessors
@ stub KeProfileInterrupt @ stub KeProfileInterrupt
@ stub KeProfileInterruptWithSource @ stub KeProfileInterruptWithSource
......
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