// netdispumdddi.h
typedef enum {
MIRACAST_STATISTIC_TYPE_CHUNK_PROCESSING_COMPLETE,
MIRACAST_STATISTIC_TYPE_CHUNK_SENT,
MIRACAST_STATISTIC_TYPE_EVENT,
MIRACAST_STATISTIC_TYPE_FORCE_UINT32
} MIRACAST_STATISTIC_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
Specifies types of Miracast statistics data that the user-mode display driver generates.
MIRACAST_STATISTIC_TYPE_CHUNK_PROCESSING_COMPLETEThe user-mode display driver has completed its processing of the encode chunk.
MIRACAST_STATISTIC_TYPE_CHUNK_SENTThe driver has successfully sent the encode chunk to the network.
MIRACAST_STATISTIC_TYPE_EVENTUsed by the user-mode display driver to report certain Miracast protocol events to the operating system for diagnostic purposes.
MIRACAST_STATISTIC_TYPE_FORCE_UINT32Forces this enumeration to compile to 32 bits in size. Without this value, some compilers would allow this enumeration to compile to a size other than 32 bits. You should not use this value.
For more info on how the driver uses these enumeration values with reporting calls to the ReportStatistic callback function, see Reporting Miracast encode chunks and statistics.