WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS union (ntddk.h)
The WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS union describes which members of a WHEA_PCIEXPRESS_ERROR_SECTION structure contain valid data.
Syntax
typedef union _WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS {
struct {
ULONGLONG PortType : 1;
ULONGLONG Version : 1;
ULONGLONG CommandStatus : 1;
ULONGLONG DeviceId : 1;
ULONGLONG DeviceSerialNumber : 1;
ULONGLONG BridgeControlStatus : 1;
ULONGLONG ExpressCapability : 1;
ULONGLONG AerInfo : 1;
ULONGLONG Reserved : 56;
} DUMMYSTRUCTNAME;
ULONGLONG ValidBits;
} WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS, *PWHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS;
Members
DUMMYSTRUCTNAME
DUMMYSTRUCTNAME.PortType
A single bit that indicates that the PortType member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.Version
A single bit that indicates that the Version member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.CommandStatus
A single bit that indicates that the CommandStatus member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.DeviceId
A single bit that indicates that the DeviceId member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.DeviceSerialNumber
A single bit that indicates that the DeviceSerialNumber member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BridgeControlStatus
A single bit that indicates that the BridgeControlStatus member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.ExpressCapability
A single bit that indicates that the ExpressCapability member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.AerInfo
A single bit that indicates that the AerInfo member of the WHEA_PCIEXPRESS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.Reserved
Reserved for system use.
ValidBits
A ULONGLONG representation of the contents of the WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS union.
Remarks
A WHEA_PCIEXPRESS_ERROR_SECTION_VALIDBITS union is contained within the WHEA_PCIEXPRESS_ERROR_SECTION structure.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported in Windows Server 2008, Windows Vista SP1, and later versions of Windows. |
Header | ntddk.h (include Ntddk.h) |