2022-07-01 09:37:23 +02:00
|
|
|
#include <QString>
|
2022-07-10 20:21:52 +02:00
|
|
|
#include "minecraft/LaunchContext.h"
|
2022-07-01 09:37:23 +02:00
|
|
|
#ifdef Q_OS_MACOS
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace SysInfo {
|
|
|
|
QString currentSystem();
|
2022-07-10 20:21:52 +02:00
|
|
|
QString currentArch(LaunchContext launchContext);
|
|
|
|
QString runCheckerForArch(LaunchContext launchContext);
|
2022-07-01 09:37:23 +02:00
|
|
|
QString useQTForArch();
|
2022-07-10 20:34:29 +02:00
|
|
|
}
|