mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
229 B
C++
17 lines
229 B
C++
// Windows/System.h
|
|
|
|
#ifndef __WINDOWS_SYSTEM_H
|
|
#define __WINDOWS_SYSTEM_H
|
|
|
|
#include "../Common/Types.h"
|
|
|
|
namespace NWindows {
|
|
namespace NSystem {
|
|
|
|
UInt32 GetNumberOfProcessors();
|
|
UInt64 GetRamSize();
|
|
|
|
}}
|
|
|
|
#endif
|