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