Common: Add crash handler functions for Windows

This commit is contained in:
Connor McLaughlin
2021-01-31 16:09:36 +10:00
parent 35f8ea13d9
commit 122cf67bb3
7 changed files with 1904 additions and 1 deletions

View File

@ -0,0 +1,8 @@
#include "types.h"
#include <string_view>
namespace CrashHandler {
bool Install();
void SetWriteDirectory(const std::string_view& dump_directory);
void Uninstall();
} // namespace CrashHandler