DXGKDDI_DESTROYVIRTUALGPU - NtDoc

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

DXGKDDI_DESTROYVIRTUALGPU DxgkddiDestroyvirtualgpu;

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

NtDoc

No description available.

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

DXGKDDI_DESTROYVIRTUALGPU callback function

Description

The DxgkDdiDestroyVirtualGpu function destroys a previously created virtual GPU.

Parameters

Context [in]

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

pArgs [in]

Pointer to a DXGKARG_DESTROYVIRTUALGPU structure.

Return value

Return STATUS_SUCCESS if the operation succeeds.

Prototype

//Declaration

DXGKDDI_DESTROYVIRTUALGPU DxgkddiDestroyvirtualgpu;

// Definition

NTSTATUS DxgkddiDestroyvirtualgpu
(
    HANDLE Context
    DXGKARG_DESTROYVIRTUALGPU * pArgs
)
{...}

Remarks

See also