// strmini.h
typedef enum _STREAM_PRIORITY {
High,
Dispatch,
Low,
LowToHigh
} STREAM_PRIORITY, *PSTREAM_PRIORITY;
View the official Windows Driver Kit DDI referenceNo description available.
_STREAM_PRIORITY enumerates available priority levels for the stream.
HighHighest priority, IRQL equal to the adapter's ISR.
DispatchMedium priority, IRQL equal to dispatch level.
LowLowest priority, IRQL equal to passive or APC level.
LowToHighGo from low priority to high priority.