// dispmprt.h
DXGKDDI_GETGPUENGINES DxgkddiGetgpuengines;
NTSTATUS DxgkddiGetgpuengines(
[in] HANDLE Context,
[in] DXGKARG_GETGPUENGINES *pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This function is no longer used and maybe be deleted in the near future. It is currently required, but will never be called.
Context [in]The miniport context that is returned by the driver in the DXGKDDI_GPU_PARTITION_INTERFACE structure.
pArgs [in]A pointer to the DXGKARG_GETGPUENGINES structure.
Return STATUS_SUCCESS if the operation succeeds.
//Declaration
DXGKDDI_GETGPUENGINES DxgkddiGetgpuengines;
// Definition
NTSTATUS DxgkddiGetgpuengines
(
HANDLE Context
DXGKARG_GETGPUENGINES * pArgs
)
{...}