2021-12-27 01:00:00 +01:00
|
|
|
// Windows/SystemInfo.h
|
|
|
|
|
|
2023-06-21 02:00:00 +02:00
|
|
|
#ifndef ZIP7_INC_WINDOWS_SYSTEM_INFO_H
|
|
|
|
|
#define ZIP7_INC_WINDOWS_SYSTEM_INFO_H
|
2021-12-27 01:00:00 +01:00
|
|
|
|
|
|
|
|
#include "../Common/MyString.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void GetCpuName_MultiLine(AString &s);
|
|
|
|
|
|
|
|
|
|
void GetOsInfoText(AString &sRes);
|
|
|
|
|
void GetSystemInfoText(AString &s);
|
|
|
|
|
void PrintSize_KMGT_Or_Hex(AString &s, UInt64 v);
|
|
|
|
|
void Add_LargePages_String(AString &s);
|
|
|
|
|
|
|
|
|
|
void GetCompiler(AString &s);
|
2023-06-21 02:00:00 +02:00
|
|
|
void GetVirtCpuid(AString &s);
|
2021-12-27 01:00:00 +01:00
|
|
|
|
|
|
|
|
#endif
|