mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 02:07:06 -06:00
17 lines
215 B
C++
17 lines
215 B
C++
// Windows/System.h
|
|
|
|
#ifndef __WINDOWS_SYSTEM_H
|
|
#define __WINDOWS_SYSTEM_H
|
|
|
|
#include "../Common/MyTypes.h"
|
|
|
|
namespace NWindows {
|
|
namespace NSystem {
|
|
|
|
UInt32 GetNumberOfProcessors();
|
|
UInt64 GetRamSize();
|
|
|
|
}}
|
|
|
|
#endif
|