// pep_x.h
typedef union _PEP_UNMASKED_INTERRUPT_FLAGS {
struct {
USHORT SecondaryInterrupt : 1;
USHORT Reserved : 15;
};
USHORT AsUSHORT;
} PEP_UNMASKED_INTERRUPT_FLAGS, *PPEP_UNMASKED_INTERRUPT_FLAGS;
View the official Windows Driver Kit DDI reference// pepfx.h
typedef union _PEP_UNMASKED_INTERRUPT_FLAGS {
struct {
USHORT SecondaryInterrupt : 1;
USHORT Reserved : 15;
};
USHORT AsUSHORT;
} PEP_UNMASKED_INTERRUPT_FLAGS, *PPEP_UNMASKED_INTERRUPT_FLAGS;
View the official Windows Driver Kit DDI referenceNo description available.
The PEP_UNMASKED_INTERRUPT_FLAGS union indicates whether an unmasked interrupt source is a primary interrupt or a secondary interrupt.
SecondaryInterruptWhether this interrupt is a primary interrupt or a secondary interrupt. This bit field is 0 if the interrupt source is a primary interrupt, and is 1 is the interrupt source is a secondary interrupt. For more information, see Primary and Secondary Interrupts.
ReservedReserved for future use.
AsUSHORTA USHORT value that contains all of the unmasked interrupt flags.
Whether this interrupt is a primary interrupt or a secondary interrupt. This bit field is 0 if the interrupt source is a primary interrupt, and is 1 is the interrupt source is a secondary interrupt. For more information, see Primary and Secondary Interrupts.
The unnamed struct contains the bit fields for the individual unmasked interrupt flags.
The Flags member of the ns-pep_x-_pep_work_information.md structure is a PEP_UNMASKED_INTERRUPT_FLAGS union.
The PEP_UNMASKED_INTERRUPT_FLAGS union indicates whether an unmasked interrupt source is a primary interrupt or a secondary interrupt.
SecondaryInterruptWhether this interrupt is a primary interrupt or a secondary interrupt. This bit field is 0 if the interrupt source is a primary interrupt, and is 1 is the interrupt source is a secondary interrupt. For more information, see Primary and Secondary Interrupts.
ReservedReserved for future use. Set to zero.
AsUSHORTA USHORT value that contains all of the unmasked interrupt flags.
The Flags member of the PEP_UNMASKED_INTERRUPT_INFORMATION structure is a PEP_UNMASKED_INTERRUPT_FLAGS union.
The unnamed structure contains the bit fields for the individual unmasked interrupt flags.