// d3dkmdt.h
typedef enum _D3DKMDT_MONITOR_CAPABILITIES_ORIGIN {
D3DKMDT_MCO_UNINITIALIZED,
D3DKMDT_MCO_DEFAULTMONITORPROFILE,
D3DKMDT_MCO_MONITORDESCRIPTOR,
D3DKMDT_MCO_MONITORDESCRIPTOR_REGISTRYOVERRIDE,
D3DKMDT_MCO_SPECIFICCAP_REGISTRYOVERRIDE,
D3DKMDT_MCO_DRIVER
} D3DKMDT_MONITOR_CAPABILITIES_ORIGIN;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DKMDT_MONITOR_CAPABILITIES_ORIGIN enumeration is used to indicate where a monitor's capability information was obtained.
D3DKMDT_MCO_UNINITIALIZEDIndicates that a variable of type D3DKMDT_MONITOR_CAPABILITIES_ORIGIN has not yet been assigned a meaningful value.
D3DKMDT_MCO_DEFAULTMONITORPROFILEIndicates that the capability information was obtained from the default monitor profile.
D3DKMDT_MCO_MONITORDESCRIPTORIndicates that the capability information was obtained from an Extended Display Information Data (EDID) descriptor.
D3DKMDT_MCO_MONITORDESCRIPTOR_REGISTRYOVERRIDEIndicates that the capability information was obtained from an INF file section that overrides the monitor's EDID descriptor.
D3DKMDT_MCO_SPECIFICCAP_REGISTRYOVERRIDEIndicates that the capability information was obtained from an INF file section that overrides a single capability.
D3DKMDT_MCO_DRIVERIndicates that the capability information was obtained by a call to the display miniport driver's DxgkDdiRecommendMonitorModes function.
The Origin member of the D3DKMDT_MONITOR_SOURCE_MODE structure is a constant from the D3DKMDT_MONITOR_CAPABILITIES_ORIGIN enumeration.
Monitor Source Mode Set Interface