1bb9dafe39
FossilOrigin-Name: f1def5fc963f9b5be6fdc11b12615815662405568b3ff991317983ad1a747523
15 lines
220 B
C
15 lines
220 B
C
/*
|
|
* Licensed under BSD 2-Clause License
|
|
*/
|
|
|
|
#ifndef MASTODONT_CODES_H
|
|
#define MASTODONT_CODES_H
|
|
|
|
enum mstdnt_code
|
|
{
|
|
MSTDNT_SUCCESS = 0,
|
|
MSTDNT_ERROR = 1,
|
|
MSTNDT_LIBCURL,
|
|
};
|
|
|
|
#endif /* MASTODONT_CODES_H */
|