1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-04-29 19:44:52 +02:00
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();
}