INtime SDK Help
INTERRUPTINFO structure

This structure is filled out by a call to GetRtInterruptInfo and returns information about the interrupt, including the handle of the thread associated with the interrupt level specified in the call.

Syntax

typedef struct tagInterruptInfo {
    DWORD  dwIrq;
    WORD   wVector;
    WORD   wIntThread;
    DWORD  reserved[2];
} INTERRUPTINFO, *LPINTERRUPTINFO;

Fields

dwIrq
The interrupt line associated with the interrupt level.
wVector
The interrupt vector associated with the level.
wIntThread
The handle of the interrupt thread associated with the level, if any.
reserved
Reserved for future use.
   
See Also

Interrupts