1
Fork 0

bump windows crate 0.46 -> 0.48 in workspace

This commit is contained in:
klensy 2023-05-09 18:20:13 +03:00
parent 7e7483d26e
commit 3c03cce341
10 changed files with 20 additions and 29 deletions

View file

@ -19,8 +19,7 @@ pub fn acquire_global_lock(name: &str) -> Box<dyn Any> {
use windows::{
core::PCSTR,
Win32::Foundation::{CloseHandle, HANDLE, WAIT_ABANDONED, WAIT_OBJECT_0},
Win32::System::Threading::{CreateMutexA, ReleaseMutex, WaitForSingleObject},
Win32::System::WindowsProgramming::INFINITE,
Win32::System::Threading::{CreateMutexA, ReleaseMutex, WaitForSingleObject, INFINITE},
};
struct Handle(HANDLE);