blob: f31677cdec463c39fd352f30b18533daa0c29c46 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#define FRIBIDI_PACKAGE "fribidi"
#define FRIBIDI_VERSION "0.10.9"
#define FRIBIDI_MAJOR_VERSION 0
#define FRIBIDI_MINOR_VERSION 10
#define FRIBIDI_MICRO_VERSION 9
#define FRIBIDI_INTERFACE_VERSION 2
#if 0 /* FRIBIDI_NO_CHARSETS */
#define FRIBIDI_NO_CHARSETS 1
#else /* NOT FRIBIDI_NO_CHARSETS */
#undef FRIBIDI_NO_CHARSETS
#endif /* FRIBIDI_NO_CHARSETS */
#define TOSTR(x) #x
#ifdef WIN32
#ifdef FRIBIDI_EXPORTS
#define FRIBIDI_API __declspec(dllexport)
#else
#define FRIBIDI_API
#endif
#define snprintf _snprintf
#define HAS_FRIBIDI_TAB_CHAR_TYPE_2_I 1
#else /* NOT WIN32 */
#define FRIBIDI_API
#endif /* WIN32 */
#define FRIBIDI_TRUE 1
#define FRIBIDI_FALSE 0
#ifndef TRUE
#define TRUE FRIBIDI_TRUE
#endif /* TRUE */
#ifndef FALSE
#define FALSE FRIBIDI_FALSE
#endif /* FALSE */
#define FRIBIDI_SIZEOF_SHORT 2
#define FRIBIDI_SIZEOF_INT 4
#define FRIBIDI_SIZEOF_LONG 4
|