// netdispumdddi.h
typedef union {
struct {
UINT MonitorConnected : 1;
UINT ReducedModeListDueToBandwidth : 1;
UINT Reserved : 30;
};
UINT Value;
} MIRACAST_SESSION_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
Contains info on a wireless display (Miracast) connected session.
MonitorConnectedIf set, the monitor (the source) is connected to a Miracast sink.
ReducedModeListDueToBandwidthIf set, the user-mode driver has reduced the modes exposed to the operating system based on the current suggested encode rate.
ReservedReserved for system use and should be set to zero.
ValueHolds a 32-bit value that identifies the Miracast connected session.