mirror of https://github.com/PCSX2/pcsx2.git
13 lines
297 B
C++
13 lines
297 B
C++
// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
|
|
|
#include <string_view>
|
|
|
|
namespace CrashHandler
|
|
{
|
|
bool Install();
|
|
void SetWriteDirectory(const std::string_view& dump_directory);
|
|
void WriteDumpForCaller();
|
|
void Uninstall();
|
|
} // namespace CrashHandler
|