Initial Commit.

This commit is contained in:
sorgelig
2017-06-14 02:47:05 +08:00
commit 96f7caaf71
56 changed files with 17806 additions and 0 deletions

9
errors.h Normal file
View File

@@ -0,0 +1,9 @@
#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);