LOCK_OPERATION - NtDoc

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

typedef enum _LOCK_OPERATION {
  IoReadAccess,
  IoWriteAccess,
  IoModifyAccess
} LOCK_OPERATION;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

_LOCK_OPERATION enumeration

Description

The LOCK_OPERATION enumeration specifies the type of access that is appropriate for a type of I/O operation.

Constants

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.

See also

FltDecodeParameters

MmProbeAndLockPages