LockFileEx method
Implementation
int LockFileEx(
ffi.Pointer<ffi.Void> hFile,
int dwFlags,
int dwReserved,
int nNumberOfBytesToLockLow,
int nNumberOfBytesToLockHigh,
ffi.Pointer<LPOVERLAPPED> lpOverlapped,
) {
return (_LockFileEx ??=
_dylib.lookupFunction<_c_LockFileEx, _dart_LockFileEx>('LockFileEx'))(
hFile,
dwFlags,
dwReserved,
nNumberOfBytesToLockLow,
nNumberOfBytesToLockHigh,
lpOverlapped,
);
}