// 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 referenceNo description available.
PFN_IDDCXADAPTERDISPLAYCONFIGUPDATE is a pointer to an OS callback function that updates the display configuration for the remote session.
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 STATUS_SUCCESS if the operation succeeds. Otherwise, returns an appropriate NTSTATUS Values error code.
An indirect display driver (IDD) should not use this pointer to directly call the function that it points to. IDDs should instead call IddCxAdapterDisplayConfigUpdate.
IddCxAdapterDisplayConfigUpdate