// d3dkmddi.h
typedef enum _DXGK_INTERRUPT_STATE {
DXGK_INTERRUPT_ENABLE = 0,
DXGK_INTERRUPT_DISABLE = 1
} DXGK_INTERRUPT_STATE;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGK_INTERRUPT_STATE enumeration provides additional information for DxgkDdi_ControlInterrupt2 or DxgkDdi_ControlInterrupt3 when VSYNC is not being used.
This enumeration uses Enable as 0 and Disable as 1 in the bivalent state, which is the opposite of the Boolean value previously used in DxgkDdi_ControlInterrupt.
DXGK_INTERRUPT_ENABLE:0The interrupt is enabled.
DXGK_INTERRUPT_DISABLE:1The interrupt is disabled.