WHEA_XPF_PROCINFO_VALIDBITS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

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;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddk-_whea_xpf_procinfo_validbits)

_WHEA_XPF_PROCINFO_VALIDBITS structure

Description

The WHEA_XPF_PROCINFO_VALIDBITS union describes which members of a WHEA_XPF_PROCINFO structure contain valid data.

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.

See also

WHEA_XPF_PROCINFO