mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-01-31 01:15:24 +01:00
12 lines
271 B
C++
12 lines
271 B
C++
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
|
|
|
#include <string_view>
|
|
|
|
namespace CrashHandler
|
|
{
|
|
bool Install();
|
|
void SetWriteDirectory(std::string_view dump_directory);
|
|
void WriteDumpForCaller();
|
|
} // namespace CrashHandler
|