#ifndef _NTBCD_H
/**
* @brief Specifies the Physical Address Extension (PAE) policies.
*/
typedef enum _BcdOSLoader_PAEPolicy
{
/**
* @brief Enable PAE if hot-pluggable memory is defined above 4GB.
*/
PaePolicyDefault = 0,
/**
* @brief PAE is enabled.
*/
PaePolicyForceEnable = 1,
/**
* @brief PAE is disabled.
*/
PaePolicyForceDisable = 2
} BcdOSLoader_PAEPolicy;
View code on GitHub
No description available.