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