mirror of https://github.com/mamedev/mame.git
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
|