WDF_INTERRUPT_PRIORITY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdfinterrupt.h

typedef enum _WDF_INTERRUPT_PRIORITY {
  WdfIrqPriorityUndefined = 0,
  WdfIrqPriorityLow,
  WdfIrqPriorityNormal,
  WdfIrqPriorityHigh
} WDF_INTERRUPT_PRIORITY, *PWDF_INTERRUPT_PRIORITY;

View the official Windows Driver Kit DDI reference
// wudfddi.h

typedef enum _WDF_INTERRUPT_PRIORITY {
  WdfIrqPriorityUndefined,
  WdfIrqPriorityLow,
  WdfIrqPriorityNormal,
  WdfIrqPriorityHigh
} WDF_INTERRUPT_PRIORITY, *PWDF_INTERRUPT_PRIORITY;

View the official Windows Driver Kit DDI reference
// wudfinterrupt.h

typedef enum _WDF_INTERRUPT_PRIORITY {
  WdfIrqPriorityUndefined,
  WdfIrqPriorityLow,
  WdfIrqPriorityNormal,
  WdfIrqPriorityHigh
} WDF_INTERRUPT_PRIORITY, *PWDF_INTERRUPT_PRIORITY;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdfinterrupt-_wdf_interrupt_priority)

_WDF_INTERRUPT_PRIORITY enumeration (wdfinterrupt.h)

Description

[Applies to KMDF and UMDF]

The WDF_INTERRUPT_PRIORITY enumeration type identifies relative priorities for device interrupts.

Constants

WdfIrqPriorityUndefined:0

The relative priority of a device's interrupt is undefined.

WdfIrqPriorityLow

The device's interrupt has a relatively low priority, typically because the interrupt does not have to be serviced immediately.

WdfIrqPriorityNormal

The device's interrupt priority is neither relatively low nor relatively high.

WdfIrqPriorityHigh

The device's interrupt has a relatively high priority, typically because the interrupt must be serviced immediately.

Remarks

The WDF_INTERRUPT_PRIORITY enumeration type is used as input to the WdfInterruptSetPolicy method.

See also

WdfInterruptSetPolicy


Windows Driver Kit DDI reference (ne-wudfddi-_wdf_interrupt_priority)

_WDF_INTERRUPT_PRIORITY enumeration (wudfddi.h)

Description

[Applies to KMDF and UMDF]

The WDF_INTERRUPT_PRIORITY enumeration type identifies relative priorities for device interrupts.

Constants

WdfIrqPriorityUndefined

The relative priority of a device's interrupt is undefined.

WdfIrqPriorityLow

The device's interrupt has a relatively low priority, typically because the interrupt does not have to be serviced immediately.

WdfIrqPriorityNormal

The device's interrupt priority is neither relatively low nor relatively high.

WdfIrqPriorityHigh

The device's interrupt has a relatively high priority, typically because the interrupt must be serviced immediately.

Remarks

The WDF_INTERRUPT_PRIORITY enumeration type is used as input to the WdfInterruptSetPolicy method.

See also

WdfInterruptSetPolicy


Windows Driver Kit DDI reference (ne-wudfinterrupt-_wdf_interrupt_priority)

_WDF_INTERRUPT_PRIORITY enumeration (wudfinterrupt.h)

Description

[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_PRIORITY enumeration type identifies relative priorities for device interrupts.

Constants

WdfIrqPriorityUndefined

The relative priority of a device's interrupt is undefined.

WdfIrqPriorityLow

The device's interrupt has a relatively low priority, typically because the interrupt does not have to be serviced immediately.

WdfIrqPriorityNormal

The device's interrupt priority is neither relatively low nor relatively high.

WdfIrqPriorityHigh

The device's interrupt has a relatively high priority, typically because the interrupt must be serviced immediately.

Remarks

The WDF_INTERRUPT_PRIORITY enumeration type is used as input to the IWDFInterrupt::SetPolicy method.

See also

IWDFInterrupt::SetPolicy