Commit e8cb9946 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add KdDisableDebugger/KdEnableDebugger stubs.

parent cfbbde2a
......@@ -4256,6 +4256,18 @@ void WINAPI KeUnstackDetachProcess(KAPC_STATE *apc_state)
FIXME("apc_state %p stub.\n", apc_state);
}
NTSTATUS WINAPI KdDisableDebugger(void)
{
FIXME(": stub.\n");
return STATUS_DEBUGGER_INACTIVE;
}
NTSTATUS WINAPI KdEnableDebugger(void)
{
FIXME(": stub.\n");
return STATUS_DEBUGGER_INACTIVE;
}
/*****************************************************
* DllMain
*/
......
......@@ -515,8 +515,8 @@
@ stub IoWriteTransferCount
@ extern KdDebuggerEnabled
@ stub KdDebuggerNotPresent
@ stub KdDisableDebugger
@ stub KdEnableDebugger
@ stdcall KdDisableDebugger()
@ stdcall KdEnableDebugger()
@ stub KdEnteredDebugger
@ stub KdPollBreakIn
@ stub KdPowerTransition
......
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