1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-18 21:13:24 +01:00
TegraExplorer/source/err.h

21 lines
401 B
C
Raw Normal View History

#pragma once
#include <utils/types.h>
typedef struct {
u16 err;
u16 loc;
char* file;
} ErrCode_t;
enum {
2020-12-25 20:16:24 +00:00
TE_ERR_UNIMPLEMENTED = 15,
TE_EXCEPTION_RESET,
TE_EXCEPTION_UNDEFINED,
TE_EXCEPTION_PREF_ABORT,
2020-12-26 00:05:33 +00:00
TE_EXCEPTION_DATA_ABORT,
2020-12-26 21:24:41 +00:00
TE_ERR_SAME_LOC,
TE_ERR_KEYDUMP_FAIL
};
#define newErrCode(err) (ErrCode_t) {err, __LINE__, __FILE__}
void DrawError(ErrCode_t err);