1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-08-30 03:03:07 +02:00
gbe_fork/crash_printer/crash_printer/common.hpp
2024-01-19 03:51:44 +02:00

18 lines
312 B
C++

#ifndef _CRASH_PRINTER_COMMON_H
#define _CRASH_PRINTER_COMMON_H
#include <string>
#include <fstream>
namespace crash_printer {
bool create_dir(const std::string &dir);
bool create_dir(const std::wstring &dir);
void write(std::ofstream &file, const std::string &data);
}
#endif // _CRASH_PRINTER_COMMON_H