System.h 213 B

12345678910111213141516
  1. // Windows/System.h
  2. #ifndef __WINDOWS_SYSTEM_H
  3. #define __WINDOWS_SYSTEM_H
  4. #include "../Common/Types.h"
  5. namespace NWindows {
  6. namespace NSystem {
  7. UInt32 GetNumberOfProcessors();
  8. UInt64 GetRamSize();
  9. }}
  10. #endif