// d3dkmddi.h
typedef struct _DXGK_MONITOR_INTERFACE {
DXGK_MONITOR_INTERFACE_VERSION Version;
DXGKDDI_MONITOR_ACQUIREMONITORSOURCEMODESET pfnAcquireMonitorSourceModeSet;
DXGKDDI_MONITOR_RELEASEMONITORSOURCEMODESET pfnReleaseMonitorSourceModeSet;
DXGKDDI_MONITOR_GETMONITORFREQUENCYRANGESET pfnGetMonitorFrequencyRangeSet;
DXGKDDI_MONITOR_GETMONITORDESCRIPTORSET pfnGetMonitorDescriptorSet;
} DXGK_MONITOR_INTERFACE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_MONITOR_INTERFACE structure contains pointers to functions that belong to the monitor Interface, which is implemented by the video present network (VidPN) manager.
VersionA value from the DXGK_MONITOR_INTERFACE_VERSION enumeration that indicates the monitor interface version. Must be set to 1.
pfnAcquireMonitorSourceModeSetA pointer to the pfnAcquireMonitorSourceModeSet function.
pfnReleaseMonitorSourceModeSetA pointer to the pfnReleaseMonitorSourceModeSet function.
pfnGetMonitorFrequencyRangeSetA pointer to the pfnGetMonitorFrequencyRangeSet function.
pfnGetMonitorDescriptorSetA pointer to the pfnGetMonitorDescriptorSet function.
A display miniport driver must verify the interface version specified in the Version member before using this structure.