WDF_REMOVE_LOCK_OPTIONS_FLAGS - NtDoc

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

typedef enum _WDF_REMOVE_LOCK_OPTIONS_FLAGS {
  WDF_REMOVE_LOCK_OPTION_ACQUIRE_FOR_IO = 0x00000001
} WDF_REMOVE_LOCK_OPTIONS_FLAGS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdfdevice-_wdf_remove_lock_options_flags)

_WDF_REMOVE_LOCK_OPTIONS_FLAGS enumeration

Description

[Applies to KMDF only]

The WDF_REMOVE_LOCK_OPTIONS_FLAGS enumeration type defines flags that are used in a driver's WDF_REMOVE_LOCK_OPTIONS structure.

Constants

WDF_REMOVE_LOCK_OPTION_ACQUIRE_FOR_IO:0x00000001

Specifies that the framework should acquire a remove lock before delivering an IRP of any type to the driver.

Remarks

For more information about using remove locks in a framework-based driver, see WdfDeviceInitSetRemoveLockOptions.

See also

WDF_REMOVE_LOCK_OPTIONS

WDF_REMOVE_LOCK_OPTIONS_INIT

WdfDeviceInitSetRemoveLockOptions