BcdLibrary_ConfigAccessPolicy - NtDoc

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

/**
 * Specifies the access policy for PCI configuration space.
 */
typedef enum _BcdLibrary_ConfigAccessPolicy
{
    /**
     * Access to PCI configuration space through the memory-mapped region is allowed.
     */
    ConfigAccessPolicyDefault,
    /**
     * Access to PCI configuration space through the memory-mapped region is not allowed.
     * This setting is used for platforms that implement memory-mapped configuration space incorrectly.
     * The CFC/CF8 access mechanism can be used to access configuration space on these platforms.
     */
    ConfigAccessPolicyDisallowMmConfig
} BcdLibrary_ConfigAccessPolicy;

#endif

View code on GitHub

No description available.