mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
15 lines
191 B
C++
15 lines
191 B
C++
#ifndef _CRASH_PRINTER_WIN
|
|
#define _CRASH_PRINTER_WIN
|
|
|
|
|
|
#include <string>
|
|
|
|
namespace crash_printer {
|
|
|
|
bool init(const std::wstring &log_file);
|
|
|
|
void deinit();
|
|
|
|
}
|
|
|
|
#endif // _CRASH_PRINTER_WIN
|