// iddcx.h
PFN_IDDCXMONITORUPDATEMODES2 PfnIddcxmonitorupdatemodes2;
NTSTATUS * PfnIddcxmonitorupdatemodes2(
PIDD_DRIVER_GLOBALS DriverGlobals,
IDDCX_MONITOR MonitorObject,
const IDARG_IN_UPDATEMODES2 *pInArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
PFN_IDDCXMONITORUPDATEMODES2 is a pointer to an OS callback function that updates the mode list for a monitor.
DriverGlobals[in] Contains system-defined per-driver data.
MonitorObject[in] The monitor object that the mode list is associated with.
pInArgs[in] Input arguments for the function.
PFN_IDDCXMONITORUPDATEMODES2 returns an NTSTATUS value that indicates the success or failure of the function.
An indirect display driver (IDD) shouldn't use this function pointer directly. IDDs should instead call IddCxMonitorUpdateModes2.