PEP_UNMASKED_INTERRUPT_FLAGS unione (pepfx.h)
L'unione PEP_UNMASKED_INTERRUPT_FLAGS indica se un'origine interrupt non mascherata è un'interruzione primaria o un interrupt secondario.
Sintassi
typedef union _PEP_UNMASKED_INTERRUPT_FLAGS {
struct {
USHORT SecondaryInterrupt : 1;
USHORT Reserved : 15;
};
USHORT AsUSHORT;
} PEP_UNMASKED_INTERRUPT_FLAGS, *PPEP_UNMASKED_INTERRUPT_FLAGS;
Membri
SecondaryInterrupt
Indica se l'interrupt è un interrupt primario o un interrupt secondario. Questo campo di bit è 0 se l'origine interrupt è un interrupt primario e è 1 è l'origine interrupt è un interrupt secondario. Per altre informazioni, vedere interrupt primari e secondari.
Reserved
Riservato per uso futuro. Impostare su zero.
AsUSHORT
Valore USHORT che contiene tutti i flag di interrupt non mascherati.
Osservazioni
Il membro flag della struttura PEP_UNMASKED_INTERRUPT_INFORMATION è un'unione PEP_UNMASKED_INTERRUPT_FLAGS.
La struttura senza nome contiene i campi di bit per i singoli flag di interrupt non mascherati.
Fabbisogno
Requisito | Valore |
---|---|
client minimo supportato | Supportato a partire da Windows 10. |
intestazione | pepfx.h (include Pep_x.h) |