LkmdTelInsertTriageDataBlock - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// lkmdtel.h

NTSTATUS LkmdTelInsertTriageDataBlock(
  HANDLE TelemetryHandle,
  PVOID  TriageData,
  ULONG  TriageDataSize
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-lkmdtel-lkmdtelinserttriagedatablock)

Description

This function adds a region of kernel memory to the kernel minidump.

Parameters

TelemetryHandle

Supplies a Telemetry Report handle created by LkmdTelCreateReport.

TriageData

Supplies the location of the triage data to be added.

TriageDataSize

Supplies the number of bytes of triage data to add.

Return value

STATUS_SUCCESS if successful. STATUS_INVALID_PARAMETER if there is not already at least one triage data block present or an existing triage data block does not start on an 8 byte boundary. STATUS_BUFFER_TOO_SMALL if there is insufficient space in the triage dump buffer to contain the new triage block.

Remarks

See also

LkmdTelCreateReport