GetLogicalProcessorInformation method

int GetLogicalProcessorInformation(
  1. Pointer<PSYSTEM_LOGICAL_PROCESSOR_INFORMATION> Buffer,
  2. Pointer<Uint64> ReturnedLength
)

Implementation

int GetLogicalProcessorInformation(
  ffi.Pointer<PSYSTEM_LOGICAL_PROCESSOR_INFORMATION> Buffer,
  ffi.Pointer<ffi.Uint64> ReturnedLength,
) {
  return (_GetLogicalProcessorInformation ??= _dylib.lookupFunction<
          _c_GetLogicalProcessorInformation,
          _dart_GetLogicalProcessorInformation>(
      'GetLogicalProcessorInformation'))(
    Buffer,
    ReturnedLength,
  );
}