Home | History | Annotate | Download | only in Windows
      1 // Windows/System.h
      2 
      3 #ifndef __WINDOWS_SYSTEM_H
      4 #define __WINDOWS_SYSTEM_H
      5 
      6 #include "../Common/MyTypes.h"
      7 
      8 namespace NWindows {
      9 namespace NSystem {
     10 
     11 UInt32 GetNumberOfProcessors();
     12 
     13 bool GetRamSize(UInt64 &size); // returns false, if unknown ram size
     14 
     15 }}
     16 
     17 #endif
     18