// dispmprt.h
DXGKDDI_WRITEVIRTUALFUNCTIONCONFIGBLOCK DxgkddiWritevirtualfunctionconfigblock;
NTSTATUS DxgkddiWritevirtualfunctionconfigblock(
[in] HANDLE Context,
[in] DXGKARG_WRITEVIRTUALFUNCTIONCONFIGBLOCK *pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This function allows the non-privileged virtual machine to write configuration data supplied by the Physical Function driver in the privileged VM. This is used by the VFs in order to write configuration block data to the PF. This function is only required if the guest VF driver expects it.
Context [in]The miniport context that is returned by the driver in the DXGKDDI_SRIOV_INTERFACE structure.
pArgs [in]A pointer to a DXGKARG_WRITEVIRTUALFUNCTIONCONFIGBLOCK structure.
Return STATUS_SUCCESS if the operation succeeds.
//Declaration
DXGKDDI_WRITEVIRTUALFUNCTIONCONFIGBLOCK DxgkddiWritevirtualfunctionconfigblock;
// Definition
NTSTATUS DxgkddiWritevirtualfunctionconfigblock
(
HANDLE Context
DXGKARG_WRITEVIRTUALFUNCTIONCONFIGBLOCK * pArgs
)
{...}