DXGKDDI_RESUMEVIRTUALGPU - NtDoc

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

DXGKDDI_RESUMEVIRTUALGPU DxgkddiResumevirtualgpu;

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

NtDoc

No description available.

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

DXGKDDI_RESUMEVIRTUALGPU callback function

Description

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

Resumes execution of processing engines of the given virtual GPU.

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_RESUMEVIRTUALGPU structure.

Return value

Return STATUS_SUCCESS if the operation succeeds.

Prototype

//Declaration

DXGKDDI_RESUMEVIRTUALGPU DxgkddiResumevirtualgpu;

// Definition

NTSTATUS DxgkddiResumevirtualgpu
(
    HANDLE Context
    DXGKARG_RESUMEVIRTUALGPU * pArgs
)
{...}

Remarks

See also