#ifndef _NTBCD_H
/**
* Specifies the start policy for the debugger.
*/
typedef enum _BcdLibrary_DebuggerStartPolicy
{
/* The debugger will start active. */
DebuggerStartActive,
/**
* 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.
*/
DebuggerStartAutoEnable,
/* The debugger will not start. */
DebuggerStartDisable
} BcdLibrary_DebuggerStartPolicy;
View code on GitHub
No description available.