mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-08-30 03:03:07 +02:00
18 lines
312 B
C++
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
|