IO_ACCESS_MODE - NtDoc

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

typedef enum _IO_ACCESS_MODE {
  SequentialAccess,
  RandomAccess
} IO_ACCESS_MODE;
View the official Windows Driver Kit DDI reference
// wdm.h

typedef enum _IO_ACCESS_MODE {
  SequentialAccess,
  RandomAccess
} IO_ACCESS_MODE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-ntddsfio-_io_access_mode)

_IO_ACCESS_MODE enumeration (ntddsfio.h)

Description

Defines the types of access mode for Scheduled File I/O (SFIO).

Constants

SequentialAccess

Indicates that the input/output will be sent down in a sequential order.

RandomAccess

Indicates that the input/output might not be in a predictable order.


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

_IO_ACCESS_MODE enumeration (wdm.h)

Description

Defines the types of access mode for Scheduled File I/O (SFIO).

Constants

SequentialAccess

Indicates that the input/output will be sent down in a sequential order.

RandomAccess

Indicates that the input/output might not be in a predictable order.