mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2025-01-25 10:43:10 -03:00
1a931b0256
and prepare for file menu more and fix that you can't go left right when going up down
15 lines
No EOL
246 B
C
15 lines
No EOL
246 B
C
#pragma once
|
|
#include <utils/types.h>
|
|
|
|
typedef struct {
|
|
u16 err;
|
|
u16 loc;
|
|
char* file;
|
|
} ErrCode_t;
|
|
|
|
enum {
|
|
TE_ERR_UNIMPLEMENTED = 21,
|
|
};
|
|
|
|
#define newErrCode(err) (ErrCode_t) {err, __LINE__, __FILE__}
|
|
void DrawError(ErrCode_t err); |