mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-04 17:19:09 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
18
src/util/Log.hpp
Normal file
18
src/util/Log.hpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef UTIL_LOG_HPP
|
||||
#define UTIL_LOG_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
enum SYSMSG_TYPE {
|
||||
SYSMSG_INFO = 0x0,
|
||||
SYSMSG_WARNING = 0x1,
|
||||
SYSMSG_ERROR = 0x2,
|
||||
SYSMSG_FATAL = 0x3,
|
||||
SYSMSG_NUMTYPES = 0x4
|
||||
};
|
||||
|
||||
bool SLogCreate(const char*, uint32_t, void*);
|
||||
|
||||
void SysMsgPrintf(SYSMSG_TYPE, const char*, ...);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue