mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-05 21:06:58 +03:00
NOISSUE fix up translation selection in settings and add OS/sys arch reporting
This commit is contained in:
parent
722896d41f
commit
a666dc0a1a
16 changed files with 131 additions and 82 deletions
19
libraries/systeminfo/include/sys.h
Normal file
19
libraries/systeminfo/include/sys.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#pragma once
|
||||
#include <QString>
|
||||
|
||||
namespace Sys
|
||||
{
|
||||
struct KernelInfo
|
||||
{
|
||||
QString kernelName;
|
||||
QString kernelVersion;
|
||||
};
|
||||
|
||||
KernelInfo getKernelInfo();
|
||||
|
||||
uint64_t getSystemRam();
|
||||
|
||||
bool isSystem64bit();
|
||||
|
||||
bool isCPU64bit();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue