]> rtime.felk.cvut.cz Git - frescor/frsh.git/blob - fres/contract/fres_error.h
Added forb exception to FRES error codes
[frescor/frsh.git] / fres / contract / fres_error.h
1 #ifndef FRES_ERROR_H
2 #define FRES_ERROR_H
3
4 #define FRES_ERR_BASE_VALUE                      0x02008000
5
6 enum fres_error {
7         FRES_ERR_FCB_NOT_RUNNING = FRES_ERR_BASE_VALUE,
8         FRES_ERR_FORB_EXCEPTION,
9 };
10
11 int fres_strerror (int error, char *message, size_t size);
12
13
14 #endif