IddCxMonitorCreate - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-iddcx-iddcxmonitorcreate)

IddCxMonitorCreate function

Description

An indirect display driver (IDD) calls IddCxMonitorCreate to create a monitor object that can later be used for arrival.

Parameters

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.

Return value

(NTSTATUS) The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method may return an appropriate NTSTATUS error code.

Remarks

An IDD must call IddCxMonitorArrival to complete the monitor arrival.

See also

IDARG_IN_MONITORCREATE

IDARG_OUT_MONITORCREATE

IddCxMonitorArrival