// wdfsync.h
VOID WdfWaitLockRelease(
[in] WDFWAITLOCK Lock
);
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WdfWaitLockRelease method releases a specified wait lock.
Lock
[in]A handle to a framework wait-lock object, obtained by a previous call to WdfWaitLockCreate.
A bug check occurs if the driver supplies an invalid object handle.
The WdfWaitLockRelease method releases a wait lock that the driver acquired by a previous call to WdfWaitLockAcquire.
For more information about wait locks, see Synchronization Techniques for Framework-Based Drivers.
For a code example that uses WdfWaitLockRelease, see WdfWaitLockAcquire.