WHEA_XPF_PROCINFO_VALIDBITS union (ntddk.h)
The WHEA_XPF_PROCINFO_VALIDBITS union describes which members of a WHEA_XPF_PROCINFO structure contain valid data.
Syntax
typedef union _WHEA_XPF_PROCINFO_VALIDBITS {
struct {
ULONGLONG CheckInfo : 1;
ULONGLONG TargetId : 1;
ULONGLONG RequesterId : 1;
ULONGLONG ResponderId : 1;
ULONGLONG InstructionPointer : 1;
ULONGLONG Reserved : 59;
} DUMMYSTRUCTNAME;
ULONGLONG ValidBits;
} WHEA_XPF_PROCINFO_VALIDBITS, *PWHEA_XPF_PROCINFO_VALIDBITS;
Members
DUMMYSTRUCTNAME
DUMMYSTRUCTNAME.CheckInfo
A single bit that indicates that the CheckInfo member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.TargetId
A single bit that indicates that the TargetId member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.RequesterId
A single bit that indicates that the RequesterId member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.ResponderId
A single bit that indicates that the ResponderId member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.InstructionPointer
A single bit that indicates that the InstructionPointer member of the WHEA_XPF_PROCINFO structure contains valid data.
DUMMYSTRUCTNAME.Reserved
Reserved for system use.
ValidBits
A ULONGLONG representation of the contents of the WHEA_XPF_PROCINFO_VALIDBITS union.
Remarks
A WHEA_XPF_PROCINFO_VALIDBITS union is contained within the WHEA_XPF_PROCINFO 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) |