ultimatepp/upptst/MemoryStatus/MemoryStatus.cpp
cxl 3cb3c9f0de .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@14571 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-06-09 13:30:39 +00:00

14 lines
293 B
C++

#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
StdLogSetup(LOG_COUT|LOG_FILE);
uint64 total, available;
GetSystemMemoryStatus(total, available);
LOG("Total memory: " << (total >> 20) << " MB");
LOG("Available memory: " << (available >> 20) << " MB");
}