// dispmprt.h
DXGKDDI_SUSPENDVIRTUALGPU DxgkddiSuspendvirtualgpu;
NTSTATUS DxgkddiSuspendvirtualgpu(
[in] HANDLE Context,
[in] DXGKARG_SUSPENDVIRTUALGPU *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.
This function suspends execution of all engines and operation of the given virtual GPU. The video memory must not be touched after this point.
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 STATUS_SUCCESS if the operation succeeds.
//Declaration
DXGKDDI_SUSPENDVIRTUALGPU DxgkddiSuspendvirtualgpu;
// Definition
NTSTATUS DxgkddiSuspendvirtualgpu
(
HANDLE Context
DXGKARG_SUSPENDVIRTUALGPU * pArgs
)
{...}