IO_PAGING_PRIORITY - NtDoc

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

typedef enum _IO_PAGING_PRIORITY {
  IoPagingPriorityInvalid,
  IoPagingPriorityNormal,
  IoPagingPriorityHigh,
  IoPagingPriorityReserved1,
  IoPagingPriorityReserved2
} IO_PAGING_PRIORITY;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdm-_io_paging_priority)

_IO_PAGING_PRIORITY enumeration

Description

The IO_PAGING_PRIORITY enumeration describes the priority value for a paging I/O IRP.

Constants

IoPagingPriorityInvalid

The IRP is not a paging I/O IRP.

IoPagingPriorityNormal

The associated IRP has a normal priority level for paging I/O.

IoPagingPriorityHigh

The associated IRP has a high priority level for paging I/O.

IoPagingPriorityReserved1

Reserved for system use.

IoPagingPriorityReserved2

Reserved for system use.

Remarks

The IoGetPagingIoPriority routine returns an IO_PAGING_PRIORITY value to indicate the priority value of a paging I/O IRP.

See also

IoGetPagingIoPriority