ntoskrnl: Add KfRaiseIrql 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
526fc34a39
commit
ddca4eb838
2 changed files with 10 additions and 0 deletions
dlls/ntoskrnl.exe
|
@ -4455,6 +4455,15 @@ NTSTATUS WINAPI KdEnableDebugger(void)
|
|||
return STATUS_DEBUGGER_INACTIVE;
|
||||
}
|
||||
|
||||
#ifdef __x86_64__
|
||||
|
||||
void WINAPI KfRaiseIrql(KIRQL new, KIRQL *old)
|
||||
{
|
||||
FIXME("new %u old %p: stub.\n", new, old);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/*****************************************************
|
||||
* DllMain
|
||||
*/
|
||||
|
|
|
@ -659,6 +659,7 @@
|
|||
@ stdcall KeWaitForMultipleObjects(long ptr long long long long ptr ptr)
|
||||
@ stdcall KeWaitForMutexObject(ptr long long long ptr)
|
||||
@ stdcall KeWaitForSingleObject(ptr long long long ptr)
|
||||
@ stdcall -arch=x86_64 KfRaiseIrql(long ptr)
|
||||
@ stub KiBugCheckData
|
||||
@ stub KiCoprocessorError
|
||||
@ stub KiDeliverApc
|
||||
|
|
Loading…
Add table
Reference in a new issue