PFN_REPORT_STATISTIC - NtDoc

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

PFN_REPORT_STATISTIC PfnReportStatistic;

VOID PfnReportStatistic(
  [in] HANDLE hMiracastDeviceHandle,
  [in] MIRACAST_STATISTIC_DATA *pStatistics
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-netdispumdddi-pfn_report_statistic)

PFN_REPORT_STATISTIC callback function

Description

Called by the user-mode display driver to report the statistics of the Miracast link to the operating system.The data type of this function is PFN_REPORT_STATISTIC.

Parameters

hMiracastDeviceHandle [in]

A handle that represents a Miracast device. The Miracast user-mode driver previously obtained this handle as the hMiracastDeviceHandle parameter in a call to the CreateMiracastContext function.

pStatistics [in]

A pointer to a MIRACAST_STATISTIC_DATA structure that contains the statistics data.

Remarks

When the operating system calls this function, it logs the data from the pStatistics parameter but takes no other action.

For more info on how to use this function, see these topics:

See also

CreateMiracastContext

MIRACAST_STATISTIC_DATA