16 lines
191 B
C++
Raw Normal View History

2024-01-07 09:20:26 +02:00
#ifndef _CRASH_PRINTER_WIN
#define _CRASH_PRINTER_WIN
#include <string>
namespace crash_printer {
bool init(const std::string &log_file);
2024-01-07 09:20:26 +02:00
void deinit();
}
2024-06-15 20:20:31 +03:00
#endif // _CRASH_PRINTER_WIN