// d3dkmddi.h
typedef struct _DXGKARGCB_ISFEATUREENABLED {
HANDLE DeviceHandle;
DXGK_FEATURE_ID FeatureId;
BOOLEAN Enabled;
} DXGKARGCB_ISFEATUREENABLED;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARGCB_ISFEATUREENABLED structure contains the arguments used in the DXGKCB_ISFEATUREENABLED callback function, to query a driver feature's enabled state.
DeviceHandle[in] Device handle that was passed to the driver's DxgkDdiStartDevice function.
FeatureId[in] A DXGK_FEATURE_ID value that identifies the feature to query enabled state for.
Enabled[out] FALSE if the OS instructs the driver not to enable the feature. TRUE if the OS allows the driver to enable the feature.