mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-24 00:45:37 +00:00
9 lines
194 B
C++
9 lines
194 B
C++
#include "types.h"
|
|
#include <string_view>
|
|
|
|
namespace CrashHandler {
|
|
bool Install();
|
|
void SetWriteDirectory(const std::string_view& dump_directory);
|
|
void Uninstall();
|
|
} // namespace CrashHandler
|