// iddcx.h
struct IDARG_OUT_MONITORARRIVAL {
LUID OsAdapterLuid;
UINT OsTargetId;
};
View the official Windows Driver Kit DDI referenceNo description available.
Gives information about the monitor that is exposed to the OS.
OsAdapterLuidLUID of the adapter where this monitor is exposed to the OS .
Note There are no API/DDI calls the driver can make with this information. Its only use is to pass it to companion applications so they can identify the monitor they control.
OsTargetIdDMM VidPn target id of the target this monitor is exposed to the OS.
Note There are no API/DDI calls the driver can make with this information. Its only use is to pass it to companion applications so they can identify the monitor they control.
Note Although this value is related to the IDDCX_MONITOR_INFO value ConnectorIndex passed by the driver, the OS will perform internal mapping between the two that will change in future release. As such, the driver should not take any dependencies on this mapping and should use OsAdapterLuid & OsTargetId instead.