// miniport.h
typedef union _PCI_EXPRESS_SEC_AER_CAPABILITIES {
struct {
ULONG SecondaryUncorrectableFirstErrorPtr : 5;
ULONG Reserved : 27;
} DUMMYSTRUCTNAME;
ULONG AsULONG;
} PCI_EXPRESS_SEC_AER_CAPABILITIES, *PPCI_EXPRESS_SEC_AER_CAPABILITIES;
View the official Windows Driver Kit DDI reference// wdm.h
typedef union _PCI_EXPRESS_SEC_AER_CAPABILITIES {
struct {
ULONG SecondaryUncorrectableFirstErrorPtr :5;
ULONG Reserved :27;
};
ULONG AsULONG;
} PCI_EXPRESS_SEC_AER_CAPABILITIES, *PPCI_EXPRESS_SEC_AER_CAPABILITIES;
View the official Windows Driver Kit DDI referenceNo description available.
The PCI_EXPRESS_SEC_AER_CAPABILITIES union describes a PCI Express (PCIe) secondary error capabilities and control register of a PCIe advanced error reporting capability structure.
DUMMYSTRUCTNAMEThe DUMMYSTRUCTNAME structure.
DUMMYSTRUCTNAME.SecondaryUncorrectableFirstErrorPtrThe bit position of the first error that was reported in the PCIe secondary uncorrectable error status register.
DUMMYSTRUCTNAME.ReservedReserved.
AsULONGA ULONG representation of the contents of the PCI_EXPRESS_SEC_AER_CAPABILITIES union.
The PCI_EXPRESS_SEC_AER_CAPABILITIES union is available in Windows Server 2008 and later versions of Windows.
A PCI_EXPRESS_SEC_AER_CAPABILITIES union is contained in the PCI_EXPRESS_BRIDGE_AER_CAPABILITY structure.
PCI_EXPRESS_BRIDGE_AER_CAPABILITY
The PCI_EXPRESS_SEC_AER_CAPABILITIES structure describes a PCI Express (PCIe) secondary error capabilities and control register of a PCIe advanced error reporting capability structure.
DUMMYSTRUCTNAMEAsULONGA ULONG representation of the contents of the PCI_EXPRESS_SEC_AER_CAPABILITIES structure.
DUMMYSTRUCTNAME.ReservedReserved for system use.
DUMMYSTRUCTNAME.SecondaryUncorrectableFirstErrorPtrThe bit position of the first error that was reported in the PCIe secondary uncorrectable error status register.
typedef union _PCI_EXPRESS_SEC_AER_CAPABILITIES {
struct {
ULONG SecondaryUncorrectableFirstErrorPtr :5;
ULONG Reserved :27;
};
ULONG AsULONG;
} PCI_EXPRESS_SEC_AER_CAPABILITIES, *PPCI_EXPRESS_SEC_AER_CAPABILITIES;
The PCI_EXPRESS_SEC_AER_CAPABILITIES structure is available in Windows Server 2008 and later versions of Windows.
A PCI_EXPRESS_SEC_AER_CAPABILITIES structure is contained in the PCI_EXPRESS_BRIDGE_AER_CAPABILITY structure.
PCI_EXPRESS_BRIDGE_AER_CAPABILITY