GetProcessIoCounters method

int GetProcessIoCounters(
  1. Pointer<Void> hProcess,
  2. Pointer<IO_COUNTERS> lpIoCounters
)

Implementation

int GetProcessIoCounters(
  ffi.Pointer<ffi.Void> hProcess,
  ffi.Pointer<IO_COUNTERS> lpIoCounters,
) {
  return (_GetProcessIoCounters ??= _dylib.lookupFunction<
      _c_GetProcessIoCounters,
      _dart_GetProcessIoCounters>('GetProcessIoCounters'))(
    hProcess,
    lpIoCounters,
  );
}