mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-18 02:52:47 +03:00
30 lines
544 B
C++
30 lines
544 B
C++
#ifndef UTIL_C_STATUS_HPP
|
|
#define UTIL_C_STATUS_HPP
|
|
|
|
enum STATUS_TYPE {
|
|
STATUS_INFO = 0x0,
|
|
STATUS_WARNING = 0x1,
|
|
STATUS_ERROR = 0x2,
|
|
STATUS_FATAL = 0x3,
|
|
STATUS_NUMTYPES = 0x4,
|
|
};
|
|
|
|
class CStatus {
|
|
public:
|
|
// Static variables
|
|
static CStatus s_errorList;
|
|
|
|
// Member functions
|
|
void Add(const CStatus&);
|
|
void Add(STATUS_TYPE, const char*, ...);
|
|
};
|
|
|
|
class CWOWClientStatus : public CStatus {
|
|
public:
|
|
void* m_logFile = nullptr;
|
|
};
|
|
|
|
CStatus& GetGlobalStatusObj(void);
|
|
|
|
#endif
|