mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-02 06:40:42 -07:00
0ec37ac6ea
## Link to GitHub Issue, if one exists n/a ## Description of change Log soft ID (game datecode etc) at the top of auto-troubleshooter output
16 lines
395 B
C++
16 lines
395 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <initializer_list>
|
|
|
|
namespace deferredlogs {
|
|
|
|
// some shared error messages
|
|
extern const std::initializer_list<std::string> SUPERSTEP_SOUND_ERROR_MESSAGE;
|
|
|
|
void set_softid(const std::string& softid);
|
|
void defer_error_messages(std::initializer_list<std::string> messages);
|
|
void dump_to_logger(bool is_crash=false);
|
|
}
|