KTRIAGE_DUMP_DATA_ARRAY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wdm-_ktriage_dump_data_array)

_KTRIAGE_DUMP_DATA_ARRAY structure

Description

Specifies an array of memory locations and lengths (ranges) to be preserved in crash dump files.

Members

List

A pointer to a LIST_ENTRY structure that represents the entry to be added in the array.

NumBlocksUsed

NumBlocksTotal

DataSize

MaxDataSize

ComponentNameBufferLength

ComponentName

Blocks

Remarks

A 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.

See also

KBUGCHECK_REASON_CALLBACK_ROUTINE