mirror of
https://github.com/holub/mame
synced 2025-07-15 14:39:48 +03:00
19 lines
364 B
C
19 lines
364 B
C
// Windows/SystemInfo.h
|
|
|
|
#ifndef __WINDOWS_SYSTEM_INFO_H
|
|
#define __WINDOWS_SYSTEM_INFO_H
|
|
|
|
#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);
|
|
|
|
#endif
|