summaryrefslogtreecommitdiffstats
path: root/libraries/ganalytics/include/sys.h
blob: 36f7d9cd460d906a99a881660bc7a302f1473393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include <QString>

namespace Sys
{
struct KernelInfo
{
	QString kernelName;
	QString kernelVersion;
};

KernelInfo getKernelInfo();

uint64_t getSystemRam();

bool isSystem64bit();

bool isCPU64bit();
}