21 lines
341 B
C
21 lines
341 B
C
#ifndef SCUFCONT_H_
|
|
#define SCUFCONT_H_
|
|
|
|
#define SCUFCONT_RESULT_X(X) \
|
|
X(SCUFCONT_SUCCESS) \
|
|
X(SCUFCONT_OUT_OF_MEMORY)
|
|
|
|
#define X(val) val,
|
|
|
|
typedef enum {
|
|
SCUFCONT_RESULT_X(X)
|
|
} ScufContResult;
|
|
|
|
#undef X
|
|
|
|
extern const char* SCUFCONT_VERSION;
|
|
|
|
const char* ScufContResult_to_str(const ScufContResult res);
|
|
|
|
#endif // SCUFCONT_H_
|