blob: cc556fa43e24ec3250806d9df2e1344324f062f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef ERR_H
#define ERR_H
#define TRY(cond, err) \
do { \
if (!(cond)) \
return -err; \
} while(0)
#define TRY_IFNOT(cond, err, stmt) \
do { \
if (!(cond)) { \
stmt \
return -err; \
} \
} while(0)
#define SUCCESS 0
#define ERR 1
#define CONINITERR 2 // Connection initialization error
#define NETINITERR 3 // Network initialization error
#define PARINITERR 4 // Parser initialization error
#define PARPARERR 5 // Parser parser error (idk.. sounded funny, okay?) PAR PAR ERR
#define PKGNOTFND 6 // Package not found
#define USAGE 7 // Usage screen displayed instead of cmd exec.
#define URLINITERR 8 // URL Struct initialization failed
#define URLPATHERR 9 // URL add path operation failed
#define INTEGRITYERR 10
#define FORKERR 11
#define PKGCONFERR 12 // Invalid package config error
/**
* Base errors.
* Substract these values to determine library errors.
*/
#define CONREQERR 100
#endif
|