// wdm.h
NTSTATUS KeAddTriageDumpDataBlock(
[_Inout_] PKTRIAGE_DUMP_DATA_ARRAY KtriageDumpDataArray,
PVOID Address,
[_In_] SIZE_T Size
);
View the official Windows Driver Kit DDI referenceNo description available.
Adds a triage dump data block to a triage dump data block array.
KtriageDumpDataArray [_Inout_]A pointer to a KTRIAGE_DUMP_DATA_ARRAY structure that is the data block array. It is assumed that the caller has already obtained exclusive write to _KtriageDumpDataArray_.
Address[_In_] A ULONG_PTR that is the starting address of the data block.
Size [_In_]The size of the data block, in bytes.
Returns STATUS_SUCCESS if the data block was successfully added. Otherwise returns an appropriate NTSTATUS value.
The array must have already been initialized by calling KeInitializeTriageDumpDataArray.
KBUGCHECK_REASON_CALLBACK_ROUTINE