9 lines
160 B
C
9 lines
160 B
C
#ifndef ERRCODES_H
|
|
#define ERRCODES_H
|
|
|
|
#define ERR_HELP 1001
|
|
#define ERR_OPT 1002
|
|
#define ERR_PARSE 1003
|
|
#define ERR_RUNTIME 1004
|
|
|
|
#endif //ERRCODES_H
|