gbe_fork/helpers/dbg_log/dbg_log.hpp

21 lines
268 B
C++
Raw Normal View History

#pragma once
2024-01-13 07:17:03 +08:00
#include <string>
namespace dbg_log
{
bool init(const wchar_t *path);
bool init(const char *path);
2024-01-13 07:17:03 +08:00
void write(const std::wstring &str);
void write(const std::string &str);
void write(const char* fmt, ...);
void close();
}