QueryIoRateControlInformationJobObject function kernel32

int QueryIoRateControlInformationJobObject(
  1. int hJob,
  2. Pointer<Utf16> VolumeName,
  3. Pointer<Pointer<JOBOBJECT_IO_RATE_CONTROL_INFORMATION>> InfoBlocks,
  4. Pointer<Uint32> InfoBlockCount,
)

Gets information about the control of the I/O rate for a job object.

DWORD QueryIoRateControlInformationJobObject(
  [in, optional] HANDLE                                hJob,
  [in, optional] PCWSTR                                VolumeName,
  [out]          JOBOBJECT_IO_RATE_CONTROL_INFORMATION **InfoBlocks,
  [out]          ULONG                                 *InfoBlockCount
);

Implementation

int QueryIoRateControlInformationJobObject(
        int hJob,
        Pointer<Utf16> VolumeName,
        Pointer<Pointer<JOBOBJECT_IO_RATE_CONTROL_INFORMATION>> InfoBlocks,
        Pointer<Uint32> InfoBlockCount) =>
    _QueryIoRateControlInformationJobObject(
        hJob, VolumeName, InfoBlocks, InfoBlockCount);