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
| #ifndef BASE_H_
| #define BASE_H_
|
|
| #ifdef __cplusplus
| extern "C" {
| #endif
|
| #ifdef __unix__
| #include <limits.h>
| #define DllExport
| #ifndef MAX_PATH
| #define MAX_PATH PATH_MAX
| #endif
|
| #else //windows
| #include <windows.h>
| #define DllExport __declspec( dllexport )
|
| #ifndef __cplusplus
| typedef int bool;
| #define false 0
| #define true -1
| #endif
|
| #endif
| /* #define _DEBUG */
|
| #define cmax(a,b) \
| ({ __typeof__ (a) _a = (a); \
| __typeof__ (b) _b = (b); \
| _a > _b ? _a : _b; })
|
| #define cmin(a,b) \
| ({ __typeof__ (a) _a = (a); \
| __typeof__ (b) _b = (b); \
| _a < _b ? _a : _b; })
|
| typedef enum {
| FUNC_RET_OK, FUNC_RET_NOT_AVAIL, FUNC_RET_ERROR, FUNC_RET_BUFFER_TOO_SMALL
| } FUNCTION_RETURN;
|
| #ifdef __cplusplus
| }
| #endif
|
| #endif
|
|