GetFileBandwidthReservation method
Implementation
int GetFileBandwidthReservation(
ffi.Pointer<ffi.Void> hFile,
ffi.Pointer<ffi.Uint64> lpPeriodMilliseconds,
ffi.Pointer<ffi.Uint64> lpBytesPerPeriod,
ffi.Pointer<ffi.Int32> pDiscardable,
ffi.Pointer<ffi.Uint64> lpTransferSize,
ffi.Pointer<ffi.Uint64> lpNumOutstandingRequests,
) {
return (_GetFileBandwidthReservation ??= _dylib.lookupFunction<
_c_GetFileBandwidthReservation,
_dart_GetFileBandwidthReservation>('GetFileBandwidthReservation'))(
hFile,
lpPeriodMilliseconds,
lpBytesPerPeriod,
pDiscardable,
lpTransferSize,
lpNumOutstandingRequests,
);
}