// dispmprt.h
DXGKDDI_VIRTUALGPUDRIVERESCAPE DxgkddiVirtualgpudriverescape;
NTSTATUS DxgkddiVirtualgpudriverescape(
[in] HANDLE Context,
[in, out] PDXGK_VIRTUALGPUDRIVERESCAPE pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This function passes information between a user mode emulation DLL and the kernel mode driver. This function is called in response to IOCTL_GPUP_DRIVER_ESCAPE.
Context [in]The miniport context that is returned by the driver in the DXGKDDI_GPU_PARTITION_INTERFACE structure.
pArgs [in, out]A pointer to a DXGK_VIRTUALGPUDRIVERESCAPE structure.
Return STATUS_SUCCESS if the operation succeeds.
//Declaration
DXGKDDI_VIRTUALGPUDRIVERESCAPE DxgkddiVirtualgpudriverescape;
// Definition
NTSTATUS DxgkddiVirtualgpudriverescape
(
HANDLE Context
PDXGK_VIRTUALGPUDRIVERESCAPE pArgs
)
{...}