// d3dkmddi.h
typedef struct _DXGKARG_CONTROLINTERRUPT2 {
DXGK_INTERRUPT_TYPE InterruptType;
union {
DXGK_INTERRUPT_STATE InterruptState;
DXGK_CRTC_VSYNC_STATE CrtcVsyncState;
};
} DXGKARG_CONTROLINTERRUPT2;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARG_CONTROLINTERRUPT2 structure is used in DxgkDdi_ControlInterrupt2 calls to describe the state of interrupts.
InterruptTypeA DXGK_INTERRUPT_TYPE enumeration that indicates the type of interrupt.
InterruptStateA DXGK_INTERRUPT_STATE enumeration that indicates whether interrupts are enabled for the driver.
CrtcVsyncStateA DXGK_CRTC_VSYNC_STATE enumeration that indicates whether VSYNCs are enabled if interrupts are also enabled for the driver.
InterruptState and CrtcVsyncState are members of a union.