mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-19 03:04:28 +00:00
10 lines
239 B
C
10 lines
239 B
C
#define ERROR_NONE 0
|
|
#define ERROR_FILE_NOT_FOUND 1
|
|
#define ERROR_INVALID_DATA 2
|
|
#define ERROR_UPDATE_FAILED 3
|
|
|
|
extern unsigned char Error;
|
|
|
|
void ErrorMessage(const char *message, unsigned char code);
|
|
void FatalError(unsigned long error);
|