ultimatepp/uppsrc/ide/Core/Cache.cpp
2022-07-21 19:02:44 +02:00

19 lines
No EOL
262 B
C++

#include "Core.h"
String CacheDir()
{
#ifdef PLATFORM_WIN32
return ConfigFile("cache");
#else
return ConfigFile(".cache/upp.cache");
#endif
}
String CacheFile(const char *name)
{
return AppendFileName(CacheDir(), name);
}
void ReduceCache(int mb_limit)
{
}