// iddcx.h
struct IDDCX_MONITOR_INFO {
UINT Size;
DISPLAYCONFIG_VIDEO_OUTPUT_TECHNOLOGY MonitorType;
UINT ConnectorIndex;
IDDCX_MONITOR_DESCRIPTION MonitorDescription;
GUID MonitorContainerId;
};
View the official Windows Driver Kit DDI referenceNo description available.
Gives information about the current monitor and its connection type.
SizeTotal size of the structure
MonitorTypeThe monitor connector type of the monitor
ConnectorIndexThis is a zero-based unique identifier for this connector. It should be unique for this adapter and the value should not change for this connector across system reboot or driver upgrade.
Note The value has to be between 0 and the IDDCX_ADAPTER_CAPS value MaxMonitorsSupported minus 1.
MonitorDescriptionPointer to the monitor description for the monitor. If the monitor does not have any description data, this should be set to NULL
MonitorContainerIdContainer Id of the monitor being connected. If any device is also inside the monitor (eg audio, touch etc), then those devices should all have the same container id.