QueryIdleProcessorCycleTime method

int QueryIdleProcessorCycleTime(
  1. Pointer<Uint64> BufferLength,
  2. Pointer<Uint64> ProcessorIdleCycleTime
)

Implementation

int QueryIdleProcessorCycleTime(
  ffi.Pointer<ffi.Uint64> BufferLength,
  ffi.Pointer<ffi.Uint64> ProcessorIdleCycleTime,
) {
  return (_QueryIdleProcessorCycleTime ??= _dylib.lookupFunction<
      _c_QueryIdleProcessorCycleTime,
      _dart_QueryIdleProcessorCycleTime>('QueryIdleProcessorCycleTime'))(
    BufferLength,
    ProcessorIdleCycleTime,
  );
}