DXGKDDI_SUSPENDVIRTUALGPU - NtDoc

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

DXGKDDI_SUSPENDVIRTUALGPU DxgkddiSuspendvirtualgpu;

NTSTATUS DxgkddiSuspendvirtualgpu(
  [in] HANDLE Context,
  [in] DXGKARG_SUSPENDVIRTUALGPU *pArgs
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-dispmprt-dxgkddi_suspendvirtualgpu)

DXGKDDI_SUSPENDVIRTUALGPU callback function

Description

[!NOTE] Virtual GPU suspend/resume is not supported. This callback function is never used.

This function suspends execution of all engines and operation of the given virtual GPU. The video memory must not be touched after this point.

Parameters

Context [in]

The miniport context that is returned by the driver in the DXGKDDI_GPU_PARTITION_INTERFACE structure.

pArgs [in]

A pointer to a DXGKARG_SUSPENDVIRTUALGPU structure.

Return value

Return STATUS_SUCCESS if the operation succeeds.

Prototype

//Declaration

DXGKDDI_SUSPENDVIRTUALGPU DxgkddiSuspendvirtualgpu;

// Definition

NTSTATUS DxgkddiSuspendvirtualgpu
(
    HANDLE Context
    DXGKARG_SUSPENDVIRTUALGPU * pArgs
)
{...}

Remarks

See also