mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-28 16:15:41 -04:00
9 lines
194 B
C++
9 lines
194 B
C++
#include "types.h"
|
|
#include <string_view>
|
|
|
|
namespace CrashHandler {
|
|
bool Install();
|
|
void SetWriteDirectory(const std::string_view& dump_directory);
|
|
void Uninstall();
|
|
} // namespace CrashHandler
|