WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS union (ntddk.h)

The WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS union describes which members of a WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structure contain valid data.

Syntax

typedef union _WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS {
  struct {
    UCHAR FRUId : 1;
    UCHAR FRUText : 1;
    UCHAR Reserved : 6;
  } DUMMYSTRUCTNAME;
  UCHAR  AsUCHAR;
} WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS, *PWHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS;

Members

DUMMYSTRUCTNAME

Defines the DUMMYSTRUCTNAME structure.

DUMMYSTRUCTNAME.FRUId

A single bit that indicates that the FRUId member of the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structure contains valid data.

DUMMYSTRUCTNAME.FRUText

A single bit that indicates that the FRUText member of the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR structure contains valid data.

DUMMYSTRUCTNAME.Reserved

Reserved for system use.

AsUCHAR

A UCHAR representation of the contents of the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS union.

Remarks

A WHEA_ERROR_RECORD_SECTION_DESCRIPTOR_VALIDBITS union is contained within the WHEA_ERROR_RECORD_SECTION_DESCRIPTOR 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)

See also

WHEA_ERROR_RECORD_SECTION_DESCRIPTOR