diff options
Diffstat (limited to 'src/def.h')
-rw-r--r-- | src/def.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/def.h b/src/def.h new file mode 100644 index 0000000..ccbac10 --- /dev/null +++ b/src/def.h @@ -0,0 +1,27 @@ + +#ifndef DEF_H +#define DEF_H + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#include <sys/types.h> + +typedef int bool_t; + +/* defines */ +#ifdef __cplusplus +#define BEGIN_C extern "C" { +#define END_C } +#else +#define BEGIN_C +#define END_C +#endif /* __cplusplus */ + + +enum exbit_set { + EXBIT_COLOR_SEPARATE = 0x00000001 +}; + +#endif /* DEF_H */ |