// 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 referenceNo description available.
Defines the access rights for Scheduled File I/O (SFIO).
ReadAccessIndicates that the input/output will be comprised solely of reads.
WriteAccessIndicates that the input/output will be comprised solely of writes.
ModifyAccessIndicates that the input/output will be comprised of reads and writes.
Defines the access rights for Scheduled File I/O (SFIO).
ReadAccessIndicates that the input/output will be comprised solely of reads.
WriteAccessIndicates that the input/output will be comprised solely of writes.
ModifyAccessIndicates that the input/output will be comprised of reads and writes.