Files
easy7zip/Windows/System.h
Igor Pavlov 0f60a4933b 4.34 beta
2016-05-28 00:15:46 +01:00

22 lines
309 B
C++
Executable File

// Windows/System.h
#ifndef __WINDOWS_SYSTEM_H
#define __WINDOWS_SYSTEM_H
#include "..\Common\Types.h"
namespace NWindows {
namespace NSystem {
static UInt32 GetNumberOfProcessors()
{
SYSTEM_INFO systemInfo;
GetSystemInfo(&systemInfo);
return (UInt32)systemInfo.dwNumberOfProcessors;
}
}}
#endif