// 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 referenceNo description available.
[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.
WDF_REMOVE_LOCK_OPTION_ACQUIRE_FOR_IO:0x00000001Specifies that the framework should acquire a remove lock before delivering an IRP of any type to the driver.
For more information about using remove locks in a framework-based driver, see WdfDeviceInitSetRemoveLockOptions.
WdfDeviceInitSetRemoveLockOptions