#ifndef _NTBCD_H
typedef enum _BcdLibrary_ConfigAccessPolicy
{
/// <summary>
/// Access to PCI configuration space through the memory-mapped region is allowed.
/// </summary>
ConfigAccessPolicyDefault,
/// <summary>
/// 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.
/// </summary>
ConfigAccessPolicyDisallowMmConfig
} BcdLibrary_ConfigAccessPolicy;
View code on GitHub
No description available.