STREAM_PRIORITY - NtDoc

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

typedef enum _STREAM_PRIORITY {
  High,
  Dispatch,
  Low,
  LowToHigh
} STREAM_PRIORITY, *PSTREAM_PRIORITY;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-strmini-_stream_priority)

_STREAM_PRIORITY enumeration

Description

_STREAM_PRIORITY enumerates available priority levels for the stream.

Constants

High

Highest priority, IRQL equal to the adapter's ISR.

Dispatch

Medium priority, IRQL equal to dispatch level.

Low

Lowest priority, IRQL equal to passive or APC level.

LowToHigh

Go from low priority to high priority.