// netdispumdddi.h
typedef enum {
MIRACAST_CHUNK_TYPE_UNKNOWN,
MIRACAST_CHUNK_TYPE_COLOR_CONVERT_COMPLETE,
MIRACAST_CHUNK_TYPE_ENCODE_COMPLETE,
MIRACAST_CHUNK_TYPE_FRAME_START,
MIRACAST_CHUNK_TYPE_FRAME_DROPPED,
MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_1,
MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_2,
MIRACAST_CHUNK_TYPE_ENCODE_FORCE_UINT32
} MIRACAST_CHUNK_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
Specifies the types of wireless display (Miracast) chunk info that is to be processed.
MIRACAST_CHUNK_TYPE_UNKNOWNAn unknown or undefined chunk type.
MIRACAST_CHUNK_TYPE_COLOR_CONVERT_COMPLETEColor conversion has completed on the chunk.
MIRACAST_CHUNK_TYPE_ENCODE_COMPLETEEncoding has completed on the chunk.
MIRACAST_CHUNK_TYPE_FRAME_STARTThe chunk is at the start of the Wi-Fi frame.
MIRACAST_CHUNK_TYPE_FRAME_DROPPEDThe chunk is in a dropped Wi-Fi frame.
MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_1Encoding is driver-defined, of type 1.
MIRACAST_CHUNK_TYPE_ENCODE_DRIVER_DEFINED_2Encoding is driver-defined, of type 2.
MIRACAST_CHUNK_TYPE_ENCODE_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.