c0ddc1bf5e
FossilOrigin-Name: 4e8cdf2538b5a6eaf91c61e3b0ae57621d0934f376351c5d3b7b320927eb27d8
15 lines
220 B
C
15 lines
220 B
C
/*
|
|
* Licensed under BSD 3-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 */
|