mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
16 lines
326 B
C++
16 lines
326 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include <QString>
|
|
|
|
namespace SysInfo {
|
|
QString currentSystem();
|
|
QString useQTForArch();
|
|
QString getSupportedJavaArchitecture();
|
|
/**
|
|
* @return Total system memory in mebibytes, or 0 if it could not be determined.
|
|
*/
|
|
uint64_t getSystemRamMiB();
|
|
int suitableMaxMem();
|
|
} // namespace SysInfo
|