SetFileBandwidthReservation method
Implementation
int SetFileBandwidthReservation(
ffi.Pointer<ffi.Void> hFile,
int nPeriodMilliseconds,
int nBytesPerPeriod,
int bDiscardable,
ffi.Pointer<ffi.Uint64> lpTransferSize,
ffi.Pointer<ffi.Uint64> lpNumOutstandingRequests,
) {
return (_SetFileBandwidthReservation ??= _dylib.lookupFunction<
_c_SetFileBandwidthReservation,
_dart_SetFileBandwidthReservation>('SetFileBandwidthReservation'))(
hFile,
nPeriodMilliseconds,
nBytesPerPeriod,
bDiscardable,
lpTransferSize,
lpNumOutstandingRequests,
);
}