(handle: WinHandle)
| 729 | |
| 730 | #[pyfunction] |
| 731 | fn ReleaseMutex(handle: WinHandle) -> WindowsSysResult<i32> { |
| 732 | WindowsSysResult(unsafe { windows_sys::Win32::System::Threading::ReleaseMutex(handle.0) }) |
| 733 | } |
| 734 | |
| 735 | // LOCALE_NAME_INVARIANT is an empty string in Windows API |
| 736 | #[pyattr] |
nothing calls this directly
no test coverage detected