pcsx2/common/CrashHandler.h

13 lines
297 B
C
Raw Normal View History

// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
// SPDX-License-Identifier: LGPL-3.0+
2022-04-18 14:58:13 +00:00
#include <string_view>
namespace CrashHandler
{
bool Install();
void SetWriteDirectory(const std::string_view& dump_directory);
void WriteDumpForCaller();
2022-04-18 14:58:13 +00:00
void Uninstall();
} // namespace CrashHandler