UnlockFileEx method
Implementation
int UnlockFileEx(
ffi.Pointer<ffi.Void> hFile,
int dwReserved,
int nNumberOfBytesToUnlockLow,
int nNumberOfBytesToUnlockHigh,
ffi.Pointer<LPOVERLAPPED> lpOverlapped,
) {
return (_UnlockFileEx ??= _dylib
.lookupFunction<_c_UnlockFileEx, _dart_UnlockFileEx>('UnlockFileEx'))(
hFile,
dwReserved,
nNumberOfBytesToUnlockLow,
nNumberOfBytesToUnlockHigh,
lpOverlapped,
);
}