PFN_IDDCXADAPTERDISPLAYCONFIGUPDATE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// iddcx.h

PFN_IDDCXADAPTERDISPLAYCONFIGUPDATE PfnIddcxadapterdisplayconfigupdate;

NTSTATUS * PfnIddcxadapterdisplayconfigupdate(
  [in] PIDD_DRIVER_GLOBALS DriverGlobals,
  [in] IDDCX_ADAPTER AdapterObject,
  [in] const IDARG_IN_ADAPTERDISPLAYCONFIGUPDATE *pInArgs
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-iddcx-pfn_iddcxadapterdisplayconfigupdate)

PFN_IDDCXADAPTERDISPLAYCONFIGUPDATE callback function

Description

PFN_IDDCXADAPTERDISPLAYCONFIGUPDATE is a pointer to an OS callback function that updates the display configuration for the remote session.

Parameters

DriverGlobals [in]

Pointer to an IDD_DRIVER_GLOBALS structure containing system-defined per-driver data.

AdapterObject [in]

The adapter object of the remote adapter that the display configuration is specified for.

pInArgs [in]

Input arguments.

Return value

Return STATUS_SUCCESS if the operation succeeds. Otherwise, returns an appropriate NTSTATUS Values error code.

Remarks

An indirect display driver (IDD) should not use this pointer to directly call the function that it points to. IDDs should instead call IddCxAdapterDisplayConfigUpdate.

See also

IddCxAdapterDisplayConfigUpdate