MIRACAST_STATISTIC_DATA structure (netdispumdddi.h)

Contains Miracast statistics data that the user-mode display driver reports to the operating system.

Syntax

typedef struct {
  MIRACAST_STATISTIC_TYPE StatisticType;
  union {
    struct {
      MIRACAST_CHUNK_INFO ChunkInfo;
    } EncodeComplete;
    struct {
      MIRACAST_CHUNK_ID ChunkId;
    } ChunkSent;
    struct {
      MIRACAST_PROTOCOL_EVENT Event;
    } ProtocolEvent;
  };
} MIRACAST_STATISTIC_DATA;

Members

StatisticType

The type of statistics data from the MIRACAST_STATISTIC_TYPE enumeration.

EncodeComplete

EncodeComplete.ChunkInfo

A MIRACAST_CHUNK_INFO structure that provides info about an encode chunk that is identified by the ChunkId member.

ChunkSent

ChunkSent.ChunkId

The identifier for this chunk, of type MIRACAST_CHUNK_ID.

ProtocolEvent

ProtocolEvent.Event

The type of protocol event, given as a value of the MIRACAST_PROTOCOL_EVENT enumeration.

Requirements

Requirement Value
Minimum supported client Windows 8.1
Minimum supported server Windows Server 2012 R2
Header netdispumdddi.h (include Netdispumdddi.h)

See also

MIRACAST_CHUNK_ID

MIRACAST_CHUNK_INFO

MIRACAST_PROTOCOL_EVENT

MIRACAST_STATISTIC_TYPE