gbe_fork/helpers/dbg_log/dbg_log.hpp

15 lines
168 B
C++
Raw Normal View History

#pragma once
namespace dbg_log
{
bool init(const wchar_t *path);
bool init(const char *path);
void write(const char* fmt, ...);
void close();
}