mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2025-01-03 23:37:34 +00:00
20 lines
217 B
C++
20 lines
217 B
C++
#pragma once
|
|
#include <QString>
|
|
|
|
namespace Sys
|
|
{
|
|
struct KernelInfo
|
|
{
|
|
QString kernelName;
|
|
QString kernelVersion;
|
|
};
|
|
|
|
KernelInfo getKernelInfo();
|
|
|
|
uint64_t getSystemRam();
|
|
|
|
bool isSystem64bit();
|
|
|
|
bool isCPU64bit();
|
|
}
|