mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 02:04: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:
parent
ddca4eb838
commit
f185a3acb9
3 changed files with 7 additions and 1 deletions
|
@ -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)
|
||||||
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 @@
|
||||||
@ 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
|
||||||
|
|
Loading…
Reference in a new issue