#ifndef _NTBCD_H
typedef enum _BcdLibrary_DebuggerStartPolicy
{
/// <summary>
/// The debugger will start active.
/// </summary>
DebuggerStartActive,
/// <summary>
/// The debugger will start in the auto-enabled state.
/// If a debugger is attached it will be used; otherwise the debugger port will be available for other applications.
/// </summary>
DebuggerStartAutoEnable,
/// <summary>
/// The debugger will not start.
/// </summary>
DebuggerStartDisable
} BcdLibrary_DebuggerStartPolicy;
View code on GitHub
No description available.