mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-04 00:59:09 +00:00
* chore(build): rename src/util/Log.* to SysMessage.* * chore(ui): implement SetNonSpaceWrap() for error messages * chore(ui): move Video Script methods into CGVideoOptions class * chore(script): temporary fix GetNumOutputDrivers to eliminate loading errors * feat(sound): add SI2 Log methods * chore(sound): add SI2 CVars * chore(ui): implement Script_PlayGlueMusic * chore(sound): update SI2::Init() * fix: resolve compilation errors in variadic macros SI2_ERR and SI2_LOG --------- Co-authored-by: Tristan Cormier <cormiert2@outlook.com>
16 lines
312 B
C++
16 lines
312 B
C++
#ifndef UTIL_SYSMESSAGE_HPP
|
|
#define UTIL_SYSMESSAGE_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
enum SYSMSG_TYPE {
|
|
SYSMSG_INFO = 0x0,
|
|
SYSMSG_WARNING = 0x1,
|
|
SYSMSG_ERROR = 0x2,
|
|
SYSMSG_FATAL = 0x3,
|
|
SYSMSG_NUMTYPES = 0x4
|
|
};
|
|
|
|
void SysMsgPrintf(SYSMSG_TYPE, const char*, ...);
|
|
|
|
#endif
|