mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
15 lines
248 B
C++
15 lines
248 B
C++
#ifndef STORM_ERROR_ERROR_HPP
|
|
#define STORM_ERROR_ERROR_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
struct APPFATINFO {
|
|
const char *filename;
|
|
int32_t linenumber;
|
|
uintptr_t threadId;
|
|
};
|
|
|
|
extern uint32_t s_lasterror;
|
|
extern APPFATINFO s_appFatInfo;
|
|
|
|
#endif
|