mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 17:44:41 -06:00
11 lines
299 B
C++
11 lines
299 B
C++
#pragma once
|
|
|
|
void ExceptionHandler_Init();
|
|
|
|
bool CrashLog_Create();
|
|
void CrashLog_SetOutputChannels(bool writeToStdErr, bool writeToLogTxt);
|
|
void CrashLog_WriteLine(std::string_view text, bool newLine = true);
|
|
void CrashLog_WriteHeader(const char* header);
|
|
|
|
void ExceptionHandler_LogGeneralInfo();
|