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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
/*
*/
#ifndef __H_DEFS__
#define __H_DEFS__
#include <limits.h>
#include <stddef.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 */
BEGIN_DECLS
#include <stdio.h>
#include <stdlib.h>
#ifndef FALSE
/**
* FALSE has the absolute value of 0, it is used in as a way to represet a false
* value. A "not" value.
*/
#define FALSE 0
#endif
#ifndef TRUE
/**
* TRUE represets a value that is true. A value that is "not false".
*/
#define TRUE (!FALSE)
#endif
#define S_POINTER_TO_HASH_T(p) ((hash_t)(unsigned long) p)
/**
* sboolean is the standard definition of a boolean value in SSTS.
*
* @sa TRUE
* @sa FALSE
*
* @note
* This is the way it is done in GLib, so it is done here too.
*/
typedef int sboolean;
/** hash type */
typedef size_t hash_t;
/** spointer is a convinience typedef of void * */
typedef void* spointer;
/** sconstpointer is a convinience typedef of const void * */
typedef const void* sconstpointer;
/**
* Represents different types of objects.
*
* @se STypeName
*/
typedef enum {
S_TYPE_NONE = 0,
S_TYPE_INT,
S_TYPE_LONG,
S_TYPE_SHORT,
S_TYPE_CHAR,
S_TYPE_WCHAR,
S_TYPE_UINT,
S_TYPE_ULONG,
S_TYPE_USHORT,
S_TYPE_BOOLEAN,
S_TYPE_STRING,
S_TYPE_WSTRING,
S_TYPE_UNUSED_0,
S_TYPE_UNUSED_1,
S_TYPE_UNUSED_2,
S_TYPE_POINTER,
S_TYPE_OBJECT,
S_TYPE_INVALID
} SType;
/** @brief
* The names of the SType's
*
*
*/
static char * STypeName[] __attribute__((unused)) = {
"NONE",
"INT",
"LONG",
"SHORT",
"CHAR",
"WCHAR",
"UINT",
"ULONG",
"USHORT"
"BOOLEAN",
"STRING",
"WSTRING",
"UNUSED_0/INVALID",
"UNUSED_1/INVALID",
"UNUSED_2/INVALID",
"POINTER",
"OBJECT",
"INVALID",
0x0,
0x0,
};
/**
* @brief Get the name of the SType.
*
* For use in bindings.
*/
char *
s_type_get_name (SType k);
/* Colour definitions for console prints */
#define RESET "\033[0m"
#define BLACK "\033[30m" /* Black */
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
#define YELLOW "\033[33m" /* Yellow */
#define BLUE "\033[34m" /* Blue */
#define MAGENTA "\033[35m" /* Magenta */
#define CYAN "\033[36m" /* Cyan */
#define WHITE "\033[37m" /* White */
#define BOLDBLACK "\033[1m\033[30m" /* Bold Black */
#define BOLDRED "\033[1m\033[31m" /* Bold Red */
#define BOLDGREEN "\033[1m\033[32m" /* Bold Green */
#define BOLDYELLOW "\033[1m\033[33m" /* Bold Yellow */
#define BOLDBLUE "\033[1m\033[34m" /* Bold Blue */
#define BOLDMAGENTA "\033[1m\033[35m" /* Bold Magenta */
#define BOLDCYAN "\033[1m\033[36m" /* Bold Cyan */
#define BOLDWHITE "\033[1m\033[37m" /* Bold White */
END_DECLS
#endif
|