LkmdTelSetSecondaryData - NtDoc

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

NTSTATUS LkmdTelSetSecondaryData(
  HANDLE  TelemetryHandle,
  LPCGUID SecondaryDataGuid,
  ULONG   SecondaryDataSize,
  PVOID   SecondaryDataBuffer
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

This function sets the secondary data in the telemetry data structure. It is not required prior to submitting a report. Providing secondary data allows a component to supply extra data within the minidump to assist in debugging.

Parameters

TelemetryHandle

Supplies a telemetry handle created by LkmdTelCreateReport.

SecondaryDataGuid

This is the GUID used to define the secondary data in the minidump.

SecondaryDataSize

This is the size of the buffer for secondary data.

SecondaryDataBuffer

This is the secondary data buffer.

Return value

STATUS_SUCCESS if successful.

Remarks

See also

LkmdTelSubmitReport