ultimatepp/upptst/MemoryStatus/MemoryStatus.cpp
cxl c176a3ba21 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@14569 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-06-09 07:26:15 +00:00

14 lines
273 B
C++

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