chore: initial commit

This commit is contained in:
fallenoak 2023-01-02 13:17:18 -06:00
commit 70b00c5c38
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
965 changed files with 264882 additions and 0 deletions

18
src/util/Log.hpp Normal file
View 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