// d3dkmddi.h
DXGKDDI_MONITORFREQUENCYRANGESET_ACQUIREFIRSTFREQUENCYRANGEINFO DxgkddiMonitorfrequencyrangesetAcquirefirstfrequencyrangeinfo;
NTSTATUS DxgkddiMonitorfrequencyrangesetAcquirefirstfrequencyrangeinfo(
[in] IN_CONST_D3DKMDT_HMONITORFREQUENCYRANGESET hMonitorFrequencyRangeSet,
[out] DEREF_OUT_CONST_PPD3DKMDT_MONITOR_FREQUENCY_RANGE ppFirstMonitorFrequencyRangeInfo
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKDDI_MONITORFREQUENCYRANGESET_ACQUIREFIRSTFREQUENCYRANGEINFO function returns the first frequency range descriptor in a specified monitor frequency range set object.
hMonitorFrequencyRangeSet [in]A handle to a monitor frequency range set object. The display miniport driver previously obtained this handle by calling the pfnGetMonitorFrequencyRangeSet function of the Monitor interface.
ppFirstMonitorFrequencyRangeInfo [out]A pointer to a variable that receives a pointer to a D3DKMDT_MONITOR_FREQUENCY_RANGE structure.
The pfnAcquireFirstFrequencyRangeInfo function returns one of the following values.
| Return code | Description |
|---|---|
| STATUS_SUCCESS | The function successfully returned the first frequency range descriptor. |
| STATUS_GRAPHICS_DATASET_IS_EMPTY | The function succeeded, but there were no frequency range descriptors in the set. |
| STATUS_INVALID_PARAMETER | An invalid parameter was supplied. |
| STATUS_INVALID_MONITOR_FREQUENCYRANGESET | The handle supplied in hMonitorFrequencyRangeSet was invalid. |
This function might also return other error codes defined in Ntstatus.h.
When you have finished using the D3DKMDT_MONITOR_FREQUENCY_RANGE structure, you must release the structure by calling pfnReleaseFrequencyRangeInfo.
You can obtain all the descriptors in a monitor frequency range set by calling pfnAcquireFirstFrequencyRangeInfo and then making a sequence of calls to pfnAcquireNextFrequencyRangeInfo.