GetProcessorSystemCycleTime method

int GetProcessorSystemCycleTime(
  1. int Group,
  2. Pointer<PSYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION> Buffer,
  3. Pointer<Uint64> ReturnedLength
)

Implementation

int GetProcessorSystemCycleTime(
  int Group,
  ffi.Pointer<PSYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION> Buffer,
  ffi.Pointer<ffi.Uint64> ReturnedLength,
) {
  return (_GetProcessorSystemCycleTime ??= _dylib.lookupFunction<
      _c_GetProcessorSystemCycleTime,
      _dart_GetProcessorSystemCycleTime>('GetProcessorSystemCycleTime'))(
    Group,
    Buffer,
    ReturnedLength,
  );
}