// lkmdtel.h
NTSTATUS LkmdTelSetSecondaryData(
HANDLE TelemetryHandle,
LPCGUID SecondaryDataGuid,
ULONG SecondaryDataSize,
PVOID SecondaryDataBuffer
);
View the official Windows Driver Kit DDI referenceNo description available.
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.
TelemetryHandleSupplies a telemetry handle created by LkmdTelCreateReport.
SecondaryDataGuidThis is the GUID used to define the secondary data in the minidump.
SecondaryDataSizeThis is the size of the buffer for secondary data.
SecondaryDataBufferThis is the secondary data buffer.
STATUS_SUCCESS if successful.