// netdispumdddi.h
PFN_REPORT_STATISTIC PfnReportStatistic;
VOID PfnReportStatistic(
[in] HANDLE hMiracastDeviceHandle,
[in] MIRACAST_STATISTIC_DATA *pStatistics
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
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.
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.
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: