LeaveCriticalSection method

void LeaveCriticalSection(
  1. Pointer<PRTL_CRITICAL_SECTION> lpCriticalSection
)

Implementation

void LeaveCriticalSection(
  ffi.Pointer<PRTL_CRITICAL_SECTION> lpCriticalSection,
) {
  return (_LeaveCriticalSection ??= _dylib.lookupFunction<
      _c_LeaveCriticalSection,
      _dart_LeaveCriticalSection>('LeaveCriticalSection'))(
    lpCriticalSection,
  );
}