mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
13 lines
354 B
C++
13 lines
354 B
C++
// SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#include "types.h"
|
|
#include <string_view>
|
|
|
|
namespace CrashHandler {
|
|
bool Install();
|
|
void SetWriteDirectory(const std::string_view& dump_directory);
|
|
void WriteDumpForCaller();
|
|
void Uninstall();
|
|
} // namespace CrashHandler
|