// dispmprt.h
typedef struct _DXGK_MIRACAST_CAPS {
ULONG MaxChunkPrivateDriverDataSize;
union {
struct {
UINT HdcpSupport : 1;
UINT Reserved : 31;
};
UINT Value;
} Flags;
} DXGK_MIRACAST_CAPS, *PDXGK_MIRACAST_CAPS;
View the official Windows Driver Kit DDI referenceNo description available.
Used by a display miniport driver to identify capabilities of a Miracast device.
MaxChunkPrivateDriverDataSizeThe maximum size, in bytes, of the private data that the display miniport driver will pass when it reports a DXGK_INTERRUPT_TYPE interrupt type of DXGK_INTERRUPT_MICACAST_CHUNK_PROCESSING_COMPLETE.
FlagsFlags.HdcpSupportIndicates whether the display adapter supports the Miracast High-bandwidth Digital Content Protection (HDCP) feature.
Flags.ReservedReserved for system use. The display miniport driver must set this value to zero.
Flags.ValueHolds a 32-bit value that identifies the capabilities of the Miracast device.