PFND3D12DDI_PINRESOURCES_CB_0076 - NtDoc

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

PFND3D12DDI_PINRESOURCES_CB_0076 Pfnd3d12ddiPinresourcesCb0076;

HRESULT Pfnd3d12ddiPinresourcesCb0076(
  D3D12DDI_HRTDEVICE hRTDevice,
  const D3D12DDICB_PIN_RESOURCES_0076 *unnamedParam2
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-d3d12umddi-pfnd3d12ddi_pinresources_cb_0076)

PFND3D12DDI_PINRESOURCES_CB_0076 callback function

Description

Marks the resource as not movable and not eligible to be paged out.

Parameters

hRTDevice

Handle that identifies the display device.

unnamedParam2

A D3D12DDICB_PIN_RESOURCES_0076 structure that provides the list of resources to pin.

Return value

Returns HRESULT.

Prototype

//Declaration

PFND3D12DDI_PINRESOURCES_CB_0076 Pfnd3d12ddiPinResources;

// Definition

HRESULT Pfnd3d12ddiPinResources
(
    D3D12DDI_HRTDEVICE hRTDevice,
    CONST D3D12DDICB_PIN_RESOURCES_0076*
)
{...}

Remarks

A resource that has been pinned can be unpinned by calling PFND3D12DDI_UNPINRESOURCES_CB_0076.

See also

D3D12DDICB_PIN_RESOURCES_0076

PFND3D12DDI_UNPINRESOURCES_CB_0076