QueryIoRateControlInformationJobObject method

int QueryIoRateControlInformationJobObject(
  1. Pointer<Void> hJob,
  2. Pointer<Uint16> VolumeName,
  3. Pointer<Pointer<JOBOBJECT_IO_RATE_CONTROL_INFORMATION>> InfoBlocks,
  4. Pointer<Uint64> InfoBlockCount,
)

Implementation

int QueryIoRateControlInformationJobObject(
  ffi.Pointer<ffi.Void> hJob,
  ffi.Pointer<ffi.Uint16> VolumeName,
  ffi.Pointer<ffi.Pointer<JOBOBJECT_IO_RATE_CONTROL_INFORMATION>> InfoBlocks,
  ffi.Pointer<ffi.Uint64> InfoBlockCount,
) {
  return (_QueryIoRateControlInformationJobObject ??= _dylib.lookupFunction<
          _c_QueryIoRateControlInformationJobObject,
          _dart_QueryIoRateControlInformationJobObject>(
      'QueryIoRateControlInformationJobObject'))(
    hJob,
    VolumeName,
    InfoBlocks,
    InfoBlockCount,
  );
}