BcdLibrary_DebuggerStartPolicy - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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;

#endif

View code on GitHub

No description available.