BcdOSLoader_PAEPolicy - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTBCD_H

/**
 * Specifies the Physical Address Extension (PAE) policies.
 */
typedef enum _BcdOSLoader_PAEPolicy
{
    /**
     * Enable PAE if hot-pluggable memory is defined above 4GB.
     */
    PaePolicyDefault = 0,
    /**
     * PAE is enabled.
     */
    PaePolicyForceEnable = 1,
    /**
     * PAE is disabled.
     */
    PaePolicyForceDisable = 2
} BcdOSLoader_PAEPolicy;

#endif

View code on GitHub

No description available.