using Microsoft.Win32.SafeHandles;
[DllImport("kernel32.dll")]
public static extern bool ReleaseMutex(SafeWaitHandle hMutex);
Alternative declaration:
[DllImport("kernel32.dll")]
public static extern bool ReleaseMutex(IntPtr hMutex);
None.
None.
Please add some!
Please add some!