2021-03-20 14:04:57 -04:00
|
|
|
#ifndef RETVALS_H_INCLUDED
|
|
|
|
#define RETVALS_H_INCLUDED
|
|
|
|
|
|
|
|
#define SUCCESS 0
|
|
|
|
#define ERROR_INVALID_PARAMS 1
|
|
|
|
#define ERROR_FILE_NOT_FOUND 2
|
|
|
|
#define ERROR_CREATING_FILE 3
|
2021-03-23 17:38:58 -04:00
|
|
|
#define ERROR_BAD_DATA 4
|
|
|
|
#define ERROR_IO 5
|
2021-03-20 14:04:57 -04:00
|
|
|
|
|
|
|
#endif
|