mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
21 lines
268 B
C++
21 lines
268 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace dbg_log
|
|
{
|
|
|
|
bool init(const wchar_t *path);
|
|
|
|
bool init(const char *path);
|
|
|
|
void write(const std::wstring &str);
|
|
|
|
void write(const std::string &str);
|
|
|
|
void write(const char* fmt, ...);
|
|
|
|
void close();
|
|
|
|
}
|