PCI_EXPRESS_SEC_AER_CAPABILITIES - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-miniport-_pci_express_sec_aer_capabilities)

Description

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.

Members

DUMMYSTRUCTNAME

The DUMMYSTRUCTNAME structure.

DUMMYSTRUCTNAME.SecondaryUncorrectableFirstErrorPtr

The bit position of the first error that was reported in the PCIe secondary uncorrectable error status register.

DUMMYSTRUCTNAME.Reserved

Reserved.

AsULONG

A ULONG representation of the contents of the PCI_EXPRESS_SEC_AER_CAPABILITIES union.

Remarks

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.

See also

PCI_EXPRESS_BRIDGE_AER_CAPABILITY


Windows Driver Kit DDI reference (ns-wdm-_pci_express_sec_aer_capabilities)

_PCI_EXPRESS_SEC_AER_CAPABILITIES structure (wdm.h)

Description

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.

Members

DUMMYSTRUCTNAME

AsULONG

A ULONG representation of the contents of the PCI_EXPRESS_SEC_AER_CAPABILITIES structure.

DUMMYSTRUCTNAME.Reserved

Reserved for system use.

DUMMYSTRUCTNAME.SecondaryUncorrectableFirstErrorPtr

The bit position of the first error that was reported in the PCIe secondary uncorrectable error status register.

Syntax

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;

Remarks

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.

See also

PCI_EXPRESS_BRIDGE_AER_CAPABILITY