KBUGCHECK_DATA - NtDoc

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

typedef struct _KBUGCHECK_DATA {
  ULONG     BugCheckDataSize;
  ULONG     BugCheckCode;
  ULONG_PTR Parameter1;
  ULONG_PTR Parameter2;
  ULONG_PTR Parameter3;
  ULONG_PTR Parameter4;
} KBUGCHECK_DATA, *PKBUGCHECK_DATA;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-aux_klib-_kbugcheck_data)

_KBUGCHECK_DATA structure

Description

The KBUGCHECK_DATA structure contains bug check parameters.

Members

BugCheckDataSize

The size, in bytes, of the KBUGCHECK_DATA structure. Callers of AuxKlibGetBugCheckData must supply this value.

BugCheckCode

The bug check code. This value identifies that type of bug check that has occurred.

Parameter1

Bug check parameter 1. For more information about this parameter, see specific bug check codes.

Parameter2

Bug check parameter 2. For more information about this parameter, see specific bug check codes.

Parameter3

Bug check parameter 3. For more information about this parameter, see specific bug check codes.

Parameter4

Bug check parameter 4. For more information about this parameter, see specific bug check codes.

Remarks

The KBUGCHECK_DATA structure is used as a parameter to AuxKlibGetBugCheckData.

See also

AuxKlibGetBugCheckData