WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS union (ntddk.h)
The WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS union describes which members of a WHEA_PCIXBUS_ERROR_SECTION structure contain valid data.
Syntax
typedef union _WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS {
struct {
ULONGLONG ErrorStatus : 1;
ULONGLONG ErrorType : 1;
ULONGLONG BusId : 1;
ULONGLONG BusAddress : 1;
ULONGLONG BusData : 1;
ULONGLONG BusCommand : 1;
ULONGLONG RequesterId : 1;
ULONGLONG CompleterId : 1;
ULONGLONG TargetId : 1;
ULONGLONG Reserved : 55;
} DUMMYSTRUCTNAME;
ULONGLONG ValidBits;
} WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS, *PWHEA_PCIXBUS_ERROR_SECTION_VALIDBITS;
Members
DUMMYSTRUCTNAME
DUMMYSTRUCTNAME.ErrorStatus
A single bit that indicates that the ErrorStatus member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.ErrorType
A single bit that indicates that the ErrorType member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusId
A single bit that indicates that the BusId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusAddress
A single bit that indicates that the BusAddress member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusData
A single bit that indicates that the BusData member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.BusCommand
A single bit that indicates that the BusCommand member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.RequesterId
A single bit that indicates that the RequesterId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.CompleterId
A single bit that indicates that the CompleterId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.TargetId
A single bit that indicates that the TargetId member of the WHEA_PCIXBUS_ERROR_SECTION structure contains valid data.
DUMMYSTRUCTNAME.Reserved
Reserved for system use.
ValidBits
A ULONGLONG representation of the contents of the WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS union.
Remarks
A WHEA_PCIXBUS_ERROR_SECTION_VALIDBITS union is contained within the WHEA_PCIXBUS_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) |