// iddcx.h
NTSTATUS IddCxMonitorCreate(
[in] IDDCX_ADAPTER AdapterObject,
[in] const IDARG_IN_MONITORCREATE *pInArgs,
[out] IDARG_OUT_MONITORCREATE *pOutArgs
);
View the official Windows Driver Kit DDI referenceNo description available.
An indirect display driver (IDD) calls IddCxMonitorCreate to create a monitor object that can later be used for arrival.
AdapterObject [in]The IDDCX_ADAPTER object that is hosting the newly arrived monitor.
pInArgs [in]Pointer to an IDARG_IN_MONITORCREATE structure containing information about the monitor.
pOutArgs [out]Pointer to an IDARG_OUT_MONITORCREATE structure in which the IDDCX_MONITOR object is returned.
(NTSTATUS) The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method may return an appropriate NTSTATUS error code.
An IDD must call IddCxMonitorArrival to complete the monitor arrival.