// wdfinterrupt.h
typedef enum _WDF_INTERRUPT_POLARITY {
WdfInterruptPolarityUnknown = 0,
WdfInterruptActiveHigh,
WdfInterruptActiveLow
} WDF_INTERRUPT_POLARITY, *PWDF_INTERRUPT_POLARITY;
View the official Windows Driver Kit DDI reference// wudfinterrupt.h
typedef enum _WDF_INTERRUPT_POLARITY {
WdfInterruptPolarityUnknown,
WdfInterruptActiveHigh,
WdfInterruptActiveLow
} WDF_INTERRUPT_POLARITY, *PWDF_INTERRUPT_POLARITY;
View the official Windows Driver Kit DDI referenceNo description available.
[Applies to KMDF and UMDF]
The WDF_INTERRUPT_POLARITY enumeration type is used to specify an interrupt signal's polarity.
WdfInterruptPolarityUnknown:0The interrupt signal's polarity is unknown.
WdfInterruptActiveHighThe interrupt signal is active when it is high.
WdfInterruptActiveLowThe interrupt signal is active when it is low.
The WDF_INTERRUPT_POLARITY enumeration type is used to specify a member of the WDF_INTERRUPT_INFO structure.
[Warning: UMDF 2 is the latest version of UMDF and supersedes UMDF 1. All new UMDF drivers should be written using UMDF 2. No new features are being added to UMDF 1 and there is limited support for UMDF 1 on newer versions of Windows 10. Universal Windows drivers must use UMDF 2. For more info, see Getting Started with UMDF.]
The WDF_INTERRUPT_POLARITY enumeration type is used to specify an interrupt signal's polarity.
WdfInterruptPolarityUnknownThe interrupt signal's polarity is unknown.
WdfInterruptActiveHighThe interrupt signal is active when it is high.
WdfInterruptActiveLowThe interrupt signal is active when it is low.
The WDF_INTERRUPT_POLARITY enumeration type is used to specify a member of the WDF_INTERRUPT_INFO structure.