DeleteCriticalSection (kernel32)
Last changed: dahall-24.116.42.225

.
Summary

C# Signature:

[DllImport("kernel32.dll")]
static extern void DeleteCriticalSection(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;

}

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation