[DllImport("kernel32.dll")]
static extern void LeaveCriticalSection(ref CRITICAL_SECTION
lpCriticalSection);
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct CRITICAL_SECTION
{
IntPtr DebugInfo;
long LockCount;
long RecursionCount;
IntPtr OwningThread;
IntPtr LockSemaphore;
ulong SpinCount;
}
None.
Please add some!
Please add some!
Do you know one? Please contribute it!