// wdm.h
typedef enum _LOCK_OPERATION {
IoReadAccess,
IoWriteAccess,
IoModifyAccess
} LOCK_OPERATION;
View the official Windows Driver Kit DDI reference
No description available.
The LOCK_OPERATION enumeration specifies the type of access that is appropriate for a type of I/O operation.
IoReadAccess
This value indicates that a driver can examine the contents of a buffer but cannot change the contents.
IoWriteAccess
This value indicates that a driver can examine and change the contents of a buffer.
IoModifyAccess
This value indicates that a driver can examine and change the contents of a buffer.