ReleaseSRWLockExclusive method

void ReleaseSRWLockExclusive(
  1. Pointer<PRTL_SRWLOCK> SRWLock
)

Implementation

void ReleaseSRWLockExclusive(
  ffi.Pointer<PRTL_SRWLOCK> SRWLock,
) {
  return (_ReleaseSRWLockExclusive ??= _dylib.lookupFunction<
      _c_ReleaseSRWLockExclusive,
      _dart_ReleaseSRWLockExclusive>('ReleaseSRWLockExclusive'))(
    SRWLock,
  );
}