DXGKDDI_RESETVIRTUALFUNCTION - NtDoc

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

DXGKDDI_RESETVIRTUALFUNCTION DxgkddiResetvirtualfunction;

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

NtDoc

No description available.

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

DXGKDDI_RESETVIRTUALFUNCTION callback function

Description

This routine allows the virtualized I/O management software running in the privileged virtual machine to reset a specific virtual function.

Parameters

Context [in]

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

pArgs [in, out]

A pointer to a DXGKARG_RESETVIRTUALFUNCTION structure.

Return value

Return STATUS_SUCCESS if the operation succeeds.

Prototype

//Declaration

DXGKDDI_RESETVIRTUALFUNCTION DxgkddiResetvirtualfunction;

// Definition

NTSTATUS DxgkddiResetvirtualfunction
(
    HANDLE Context
    DXGKARG_RESETVIRTUALFUNCTION * pArgs
)
{...}

Remarks

See also