// wdm.h
typedef struct _KBUGCHECK_REASON_CALLBACK_RECORD {
LIST_ENTRY Entry;
PKBUGCHECK_REASON_CALLBACK_ROUTINE CallbackRoutine;
PUCHAR Component;
ULONG_PTR Checksum;
KBUGCHECK_CALLBACK_REASON Reason;
UCHAR State;
} KBUGCHECK_REASON_CALLBACK_RECORD, *PKBUGCHECK_REASON_CALLBACK_RECORD;
View the official Windows Driver Kit DDI referenceNo description available.
For more info, see Windows kernel opaque structures.
EntryCallbackRoutineComponentChecksumReasonStateFor more information about how this structure is used, see Writing a Bug Check Callback Routine.
Writing a Bug Check Callback Routine.