root/Trunk/FriBidi.framework/Versions/A/Headers/fribidi_config.h @ 2

Revision 2, 0.9 KB (checked in by jon, 16 years ago)

Initial commit of skeletal project.

Line 
1
2#define FRIBIDI_PACKAGE "fribidi"
3
4#define FRIBIDI_VERSION "0.10.7"
5#define FRIBIDI_MAJOR_VERSION 0
6#define FRIBIDI_MINOR_VERSION 10
7#define FRIBIDI_MICRO_VERSION 7
8#define FRIBIDI_INTERFACE_VERSION 2
9
10#if 0 /* FRIBIDI_NO_CHARSETS */
11#define FRIBIDI_NO_CHARSETS 1
12#else /* NOT FRIBIDI_NO_CHARSETS */
13#undef FRIBIDI_NO_CHARSETS
14#endif /* FRIBIDI_NO_CHARSETS */
15
16#define TOSTR(x) #x
17
18#ifdef WIN32
19
20#ifdef FRIBIDI_EXPORTS
21#define FRIBIDI_API __declspec(dllexport)
22#else
23#define FRIBIDI_API __declspec(dllimport)
24#endif
25
26#define snprintf _snprintf
27
28#else /* NOT WIN32 */
29
30#define FRIBIDI_API
31
32#endif /* WIN32 */
33
34#define FRIBIDI_TRUE    1
35#define FRIBIDI_FALSE   0
36
37#ifndef TRUE
38#define TRUE FRIBIDI_TRUE
39#endif /* TRUE */
40#ifndef FALSE
41#define FALSE FRIBIDI_FALSE
42#endif /* FALSE */
43
44#define FRIBIDI_SIZEOF_SHORT 2
45#define FRIBIDI_SIZEOF_INT 4
46#define FRIBIDI_SIZEOF_LONG 4
Note: See TracBrowser for help on using the browser.