IO_ACCESS_TYPE - NtDoc

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

typedef enum _IO_ACCESS_TYPE {
  ReadAccess,
  WriteAccess,
  ModifyAccess
} IO_ACCESS_TYPE;
View the official Windows Driver Kit DDI reference
// wdm.h

typedef enum _IO_ACCESS_TYPE {
  ReadAccess,
  WriteAccess,
  ModifyAccess
} IO_ACCESS_TYPE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_IO_ACCESS_TYPE enumeration (ntddsfio.h)

Description

Defines the access rights for Scheduled File I/O (SFIO).

Constants

ReadAccess

Indicates that the input/output will be comprised solely of reads.

WriteAccess

Indicates that the input/output will be comprised solely of writes.

ModifyAccess

Indicates that the input/output will be comprised of reads and writes.


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

_IO_ACCESS_TYPE enumeration (wdm.h)

Description

Defines the access rights for Scheduled File I/O (SFIO).

Constants

ReadAccess

Indicates that the input/output will be comprised solely of reads.

WriteAccess

Indicates that the input/output will be comprised solely of writes.

ModifyAccess

Indicates that the input/output will be comprised of reads and writes.