// 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 referenceNo description available.
Defines the types of access mode for Scheduled File I/O (SFIO).
SequentialAccessIndicates that the input/output will be sent down in a sequential order.
RandomAccessIndicates that the input/output might not be in a predictable order.
Defines the types of access mode for Scheduled File I/O (SFIO).
SequentialAccessIndicates that the input/output will be sent down in a sequential order.
RandomAccessIndicates that the input/output might not be in a predictable order.