UnlockFileEx method

int UnlockFileEx(
  1. Pointer<Void> hFile,
  2. int dwReserved,
  3. int nNumberOfBytesToUnlockLow,
  4. int nNumberOfBytesToUnlockHigh,
  5. Pointer<OVERLAPPED> lpOverlapped,
)

Implementation

int UnlockFileEx(
  ffi.Pointer<ffi.Void> hFile,
  int dwReserved,
  int nNumberOfBytesToUnlockLow,
  int nNumberOfBytesToUnlockHigh,
  ffi.Pointer<OVERLAPPED> lpOverlapped,
) {
  return _UnlockFileEx(
    hFile,
    dwReserved,
    nNumberOfBytesToUnlockLow,
    nNumberOfBytesToUnlockHigh,
    lpOverlapped,
  );
}