mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[NTOS:KD] Merge KdPowerTransition/KdChangeOption with kd64 version
This commit is contained in:
parent
453edbb5da
commit
e09554a06c
3 changed files with 2 additions and 29 deletions
|
@ -391,33 +391,6 @@ KdEnableDebugger(VOID)
|
|||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
KdPowerTransition(ULONG PowerState)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
KdChangeOption(IN KD_OPTION Option,
|
||||
IN ULONG InBufferLength OPTIONAL,
|
||||
IN PVOID InBuffer,
|
||||
IN ULONG OutBufferLength OPTIONAL,
|
||||
OUT PVOID OutBuffer,
|
||||
OUT PULONG OutBufferRequiredLength OPTIONAL)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -2205,6 +2205,7 @@ KdSystemDebugControl(
|
|||
DbgPrint("KdSystemDebugControl is unimplemented!\n");
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
|
@ -2291,6 +2292,7 @@ KdPowerTransition(IN DEVICE_POWER_STATE NewState)
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef _WINKD_
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
|
@ -79,7 +79,6 @@ PKDEBUG_SWITCH_ROUTINE KiDebugSwitchRoutine;
|
|||
//
|
||||
// Debugger Configuration Settings
|
||||
//
|
||||
#ifdef _WINKD_
|
||||
BOOLEAN KdBreakAfterSymbolLoad;
|
||||
BOOLEAN KdPitchDebugger;
|
||||
BOOLEAN KdDebuggerNotPresent;
|
||||
|
@ -92,7 +91,6 @@ BOOLEAN KdpDebuggerStructuresInitialized;
|
|||
BOOLEAN KdEnteredDebugger;
|
||||
ULONG KdDisableCount;
|
||||
LARGE_INTEGER KdPerformanceCounterRate;
|
||||
#endif
|
||||
|
||||
//
|
||||
// Breakpoint Data
|
||||
|
|
Loading…
Reference in a new issue