PrismLauncher/launcher/SysInfo.h
TheKodeToad c4971479f8
Remove systeminfo
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2025-11-08 19:37:19 +00:00

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