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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
*/
#ifndef __H_DEFS__
#define __H_DEFS__
#include <limits.h>
/** @file
*
*/
#ifdef __cplusplus
#define BEGIN_DECLS extern "C" {
#else
#define BEGIN_DECLS
#endif /*__cplusplus*/
#ifdef __cplusplus
#define END_DECLS }
#else
#define END_DECLS
#endif /* __cplusplus */
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE
#define TRUE !FALSE
#endif
typedef long hash_t;
typedef void* spointer;
typedef enum {
S_TYPES_NONE = 0,
S_TYPES_INT,
S_TYPES_CHAR,
S_TYPES_SHORT,
S_TYPES_BOOLEAN,
S_TYPES_LONG,
S_TYPES_UINT,
S_TYPES_OBJECT = INT_MAX - 1,
S_TYPES_INVALID = INT_MAX
} S_TYPES;
#endif
|