// dispmprt.h
DXGKDDI_QUERYMITIGATEDRANGECOUNT DxgkddiQuerymitigatedrangecount;
VOID DxgkddiQuerymitigatedrangecount(
HANDLE Context,
DXGKARG_QUERYMITIGATEDRANGECOUNT *pArgs
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
This function is called to get the count of the number of ranges per BAR that need to be mitigated (trapped and re-redirected to the user mode emulation DLL).
ContextThe miniport context that is returned by the driver in the DXGKDDI_GPU_PARTITION_INTERFACE structure.
pArgsA pointer to the DXGKARG_QUERYMITIGATEDRANGECOUNT structure.
//Declaration
DXGKDDI_QUERYMITIGATEDRANGECOUNT DxgkddiQuerymitigatedrangecount;
// Definition
VOID DxgkddiQuerymitigatedrangecount
(
HANDLE Context
DXGKARG_QUERYMITIGATEDRANGECOUNT * pArgs
)
{...}