// wdm.h
typedef struct _KTRIAGE_DUMP_DATA_ARRAY {
LIST_ENTRY List;
ULONG NumBlocksUsed;
ULONG NumBlocksTotal;
ULONG DataSize;
ULONG MaxDataSize;
ULONG ComponentNameBufferLength;
PUCHAR ComponentName;
KADDRESS_RANGE Blocks[ANYSIZE_ARRAY];
} KTRIAGE_DUMP_DATA_ARRAY, *PKTRIAGE_DUMP_DATA_ARRAY;
View the official Windows Driver Kit DDI referenceNo description available.
Specifies an array of memory locations and lengths (ranges) to be preserved in crash dump files.
ListA pointer to a LIST_ENTRY structure that represents the entry to be added in the array.
NumBlocksUsedNumBlocksTotalDataSizeMaxDataSizeComponentNameBufferLengthComponentNameBlocksA driver initializes this structure by calling KeInitializeTriageDumpDataArray function. A driver provides a pointer to a structure of this type when it calls the KeAddTriageDumpDataBlock function.
KBUGCHECK_REASON_CALLBACK_ROUTINE