#ifndef _NTBCD_H
/// <summary>
/// Specifies the no-execute page protection policies.
/// </summary>
typedef enum _BcdOSLoader_NxPolicy
{
/// <summary>
/// The no-execute page protection is off by default.
/// </summary>
NxPolicyOptIn = 0,
/// <summary>
/// The no-execute page protection is on by default.
/// </summary>
NxPolicyOptOut = 1,
/// <summary>
/// The no-execute page protection is always off.
/// </summary>
NxPolicyAlwaysOff = 2,
/// <summary>
/// The no-execute page protection is always on.
/// </summary>
NxPolicyAlwaysOn = 3
} BcdOSLoader_NxPolicy;
View code on GitHub
No description available.