Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

WDF_INTERRUPT_POLARITY enumeration (wdfinterrupt.h)

[Applies to KMDF and UMDF]

The WDF_INTERRUPT_POLARITY enumeration type is used to specify an interrupt signal's polarity.

Syntax

typedef enum _WDF_INTERRUPT_POLARITY {
 WdfInterruptPolarityUnknown = 0,
 WdfInterruptActiveHigh,
 WdfInterruptActiveLow
} WDF_INTERRUPT_POLARITY, *PWDF_INTERRUPT_POLARITY;

Constants

 
WdfInterruptPolarityUnknown
Value: 0
The interrupt signal's polarity is unknown.
WdfInterruptActiveHigh
The interrupt signal is active when it is high.
WdfInterruptActiveLow
The interrupt signal is active when it is low.

Remarks

The WDF_INTERRUPT_POLARITY enumeration type is used to specify a member of the WDF_INTERRUPT_INFO structure.

Requirements

Requirement Value
Minimum KMDF version 1.0
Minimum UMDF version 2.0
Header wdfinterrupt.h (include Wdf.h)

See also

WDF_INTERRUPT_INFO


Feedback

Was this page helpful?

Additional resources