// dispmprt.h
DXGKDDI_RESUMEVIRTUALGPU DxgkddiResumevirtualgpu;
NTSTATUS DxgkddiResumevirtualgpu(
[in] HANDLE Context,
[in] DXGKARG_RESUMEVIRTUALGPU *pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
[!NOTE] Virtual GPU suspend/resume is not supported. This callback function is never used.
Resumes execution of processing engines of the given virtual GPU.
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 STATUS_SUCCESS if the operation succeeds.
//Declaration
DXGKDDI_RESUMEVIRTUALGPU DxgkddiResumevirtualgpu;
// Definition
NTSTATUS DxgkddiResumevirtualgpu
(
HANDLE Context
DXGKARG_RESUMEVIRTUALGPU * pArgs
)
{...}