summaryrefslogtreecommitdiff
path: root/src/def.h
blob: ccbac10cb585dc9b5d41500d7694fb572beedde2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 */