// dispmprt.h
typedef struct _DXGK_VIRTUALGPUDRIVERESCAPE {
ULONG PartitionId;
ULONG InputBufferSize;
ULONG OutputBufferSize;
PVOID pInputBuffer;
PVOID pOutputBuffer;
} DXGK_VIRTUALGPUDRIVERESCAPE, *PDXGK_VIRTUALGPUDRIVERESCAPE;
View the official Windows Driver Kit DDI referenceNo description available.
Information to be passed between a user mode emulation DLL and the kernel mode driver.
PartitionIdIdentifies the vGPU partition if needed.
InputBufferSizeThe size in bytes of the buffer, pInputBuffer points to.
OutputBufferSizeThe size in bytes of the buffer, pOutputBuffer points to.
pInputBufferPointer to the input buffer. This is the pointer to the GPUP_DRIVER_ESCAPE_INPUT, which is followed by the driver data.
pOutputBufferPointer to the output buffer.
The pointers to the input and output buffers cannot be the same.