Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Specifies an array of memory locations and lengths (ranges) to be preserved in crash dump files.
Syntax
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;
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[ANYSIZE_ARRAY]
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.
Requirements
| Requirement | Value | 
|---|---|
| Minimum supported client | Windows 10, version 1803 | 
| Header | wdm.h |