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

ntoskrnl: Add KfRaiseIrql stub.

parent 526fc34a
......@@ -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
......
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