GetLogicalProcessorInformationEx method

int GetLogicalProcessorInformationEx(
  1. int RelationshipType,
  2. Pointer<_SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX> Buffer,
  3. Pointer<Uint64> ReturnedLength
)

Implementation

int GetLogicalProcessorInformationEx(
  int RelationshipType,
  ffi.Pointer<_SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX> Buffer,
  ffi.Pointer<ffi.Uint64> ReturnedLength,
) {
  return (_GetLogicalProcessorInformationEx ??= _dylib.lookupFunction<
          _c_GetLogicalProcessorInformationEx,
          _dart_GetLogicalProcessorInformationEx>(
      'GetLogicalProcessorInformationEx'))(
    RelationshipType,
    Buffer,
    ReturnedLength,
  );
}