mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-24 08:45:38 +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
|