DXGKDDI_MONITORSOURCEMODESET_RELEASEMODEINFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3dkmddi.h

DXGKDDI_MONITORSOURCEMODESET_RELEASEMODEINFO DxgkddiMonitorsourcemodesetReleasemodeinfo;

NTSTATUS DxgkddiMonitorsourcemodesetReleasemodeinfo(
  [in] IN_CONST_D3DKMDT_HMONITORSOURCEMODESET hMonitorSourceModeSet,
  [in] IN_CONST_PD3DKMDT_MONITOR_SOURCE_MODE_CONST pMonitorSourceModeInfo
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3dkmddi-dxgkddi_monitorsourcemodeset_releasemodeinfo)

DXGKDDI_MONITORSOURCEMODESET_RELEASEMODEINFO callback function

Description

The pfnReleaseModeInfo function releases a D3DKMDT_MONITOR_SOURCE_MODE structure that the VidPN manager previously provided to the display miniport driver.

Parameters

hMonitorSourceModeSet [in]

A handle to a monitor source mode set object. The display miniport driver previously obtained this handle by calling the pfnAcquireMonitorSourceModeSet function of the Monitor interface.

pMonitorSourceModeInfo [in]

A pointer to the D3DKMDT_MONITOR_SOURCE_MODE structure that is to be released.

Return value

The pfnReleaseModeInfo function returns one of the following values:

Return code Description
STATUS_SUCCESS The function succeeded.
STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET The handle supplied in hMonitorSourceModeSet was invalid.
STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE The pointer supplied in pMonitorSourceModeInfo was invalid.

Remarks

When you have finished using a D3DKMDT_MONITOR_SOURCE_MODE structure that you obtained by calling pfnAcquireFirstModeInfo or pfnAcquireNextModeInfo, you must release the structure by calling pfnReleaseModeInfo.

The D3DKMDT_HMONITORSOURCEMODESET data type is defined in D3dkmdt.h.

See also

D3DKMDT_MONITOR_SOURCE_MODE

pfnAcquireFirstModeInfo

pfnAcquireNextModeInfo