AuxKlibGetBugCheckData - NtDoc

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

NTSTATUS AuxKlibGetBugCheckData(
  [out] PKBUGCHECK_DATA BugCheckData
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-aux_klib-auxklibgetbugcheckdata)

AuxKlibGetBugCheckData function

Description

The AuxKlibGetBugCheckData routine retrieves information about a bug check that has just occurred.

Parameters

BugCheckData [out]

A pointer to a KBUGCHECK_DATA structure that contains information about the bug check. The BugCheckData size of this structure should be set equal to the size, in bytes, of the KBUGCHECK_DATA structure.

Return value

AuxKlibGetBugCheckData returns STATUS_SUCCESS if the operation succeeds. The routine returns STATUS_INFO_LENGTH_MISMATCH if the KBUGCHECK_DATA structure's size is incorrect.

Remarks

The AuxKlibGetBugCheckData routine can be called only from a BugCheckCallback routine.

Drivers must call AuxKlibInitialize before calling AuxKlibGetBugCheckData.

See also

AuxKlibInitialize

BugCheckCallback

KBUGCHECK_DATA