mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-26 10:55:42 -04:00
13 lines
347 B
C++
13 lines
347 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(std::string_view dump_directory);
|
|
void WriteDumpForCaller();
|
|
void Uninstall();
|
|
} // namespace CrashHandler
|