fribidi_config.h | fribidi_config.h | |||
---|---|---|---|---|
#define FRIBIDI_PACKAGE "fribidi" | #define FRIBIDI_PACKAGE "fribidi" | |||
#define FRIBIDI_VERSION "0.10.7" | #define FRIBIDI_VERSION "0.10.8" | |||
#define FRIBIDI_MAJOR_VERSION 0 | #define FRIBIDI_MAJOR_VERSION 0 | |||
#define FRIBIDI_MINOR_VERSION 10 | #define FRIBIDI_MINOR_VERSION 10 | |||
#define FRIBIDI_MICRO_VERSION 7 | #define FRIBIDI_MICRO_VERSION 8 | |||
#define FRIBIDI_INTERFACE_VERSION 2 | #define FRIBIDI_INTERFACE_VERSION 2 | |||
#if 0 /* FRIBIDI_NO_CHARSETS */ | #if 0 /* FRIBIDI_NO_CHARSETS */ | |||
#define FRIBIDI_NO_CHARSETS 1 | #define FRIBIDI_NO_CHARSETS 1 | |||
#else /* NOT FRIBIDI_NO_CHARSETS */ | #else /* NOT FRIBIDI_NO_CHARSETS */ | |||
#undef FRIBIDI_NO_CHARSETS | #undef FRIBIDI_NO_CHARSETS | |||
#endif /* FRIBIDI_NO_CHARSETS */ | #endif /* FRIBIDI_NO_CHARSETS */ | |||
#define TOSTR(x) #x | #define TOSTR(x) #x | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
fribidi_unicode.h | fribidi_unicode.h | |||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#include "fribidi_config.h" | #include "fribidi_config.h" | |||
#include "fribidi_types.h" | #include "fribidi_types.h" | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" | extern "C" | |||
{ | { | |||
#endif | #endif | |||
/* Unicode version */ | /* Unicode version */ | |||
#define FRIBIDI_UNICODE_CHARS (sizeof(FriBidiChar) >= 4 ? 0x110000 : 0x100 00) | #define FRIBIDI_UNICODE_CHARS (sizeof(FriBidiChar) >= 4 ? 0x110000 : 0x100 00) | |||
#define FRIBIDI_UNICODE_VERSION "4.1.0" | #define FRIBIDI_UNICODE_VERSION "5.0.0" | |||
/* UAX#9 Unicode BiDirectional Algorithm */ | /* UAX#9 Unicode BiDirectional Algorithm */ | |||
#define UNI_MAX_BIDI_LEVEL 61 | #define UNI_MAX_BIDI_LEVEL 61 | |||
/* BiDirectional marks */ | /* BiDirectional marks */ | |||
#define UNI_LRM 0x200E | #define UNI_LRM 0x200E | |||
#define UNI_RLM 0x200F | #define UNI_RLM 0x200F | |||
#define UNI_LRE 0x202A | #define UNI_LRE 0x202A | |||
#define UNI_RLE 0x202B | #define UNI_RLE 0x202B | |||
#define UNI_PDF 0x202C | #define UNI_PDF 0x202C | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||