ICU 49.1.1  49.1.1
uvernum.h
1 /*
2 *******************************************************************************
3 * Copyright (C) 2000-2012, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 *******************************************************************************
6 *
7 * file name: uvernum.h
8 * encoding: US-ASCII
9 * tab size: 8 (not used)
10 * indentation:4
11 *
12 * Created by: Vladimir Weinstein
13 * Updated by: Steven R. Loomis
14 *
15 * Gets included by uversion.h and other files.
16 *
17 * IMPORTANT: When updating version, the following things need to be done:
18 * source/common/unicode/uvernum.h - this file: update major, minor,
19 * patchlevel, suffix, version, short version constants, namespace,
20 * renaming macro, and copyright
21 *
22 * The following files need to be updated as well, which can be done
23 * by running the UNIX makefile target 'update-windows-makefiles' in icu/source.
24 *
25 *
26 * source/common/common.vcproj - update 'Output file name' on the link tab so
27 * that it contains the new major/minor combination
28 * source/i18n/i18n.vcproj - same as for the common.vcproj
29 * source/layout/layout.vcproj - same as for the common.vcproj
30 * source/layoutex/layoutex.vcproj - same
31 * source/stubdata/stubdata.vcproj - same as for the common.vcproj
32 * source/io/io.vcproj - same as for the common.vcproj
33 * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains
34 * the new major/minor combination and the Unicode version.
35 */
36 
37 #ifndef UVERNUM_H
38 #define UVERNUM_H
39 
44 #define U_COPYRIGHT_STRING \
45  " Copyright (C) 2012, International Business Machines Corporation and others. All Rights Reserved. "
46 
51 #define U_ICU_VERSION_MAJOR_NUM 49
52 
57 #define U_ICU_VERSION_MINOR_NUM 1
58 
63 #define U_ICU_VERSION_PATCHLEVEL_NUM 1
64 
69 #ifndef U_ICU_VERSION_BUILDLEVEL_NUM
70 #define U_ICU_VERSION_BUILDLEVEL_NUM 0
71 #endif
72 
77 #define U_ICU_VERSION_SUFFIX _49
78 
95 #ifndef U_ICU_ENTRY_POINT_RENAME
96 #ifdef U_HAVE_LIB_SUFFIX
97 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) x ## y ## z
98 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y,z) U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z)
99 #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX,U_LIB_SUFFIX_C_NAME)
100 #else
101 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
102 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y)
103 #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
104 #endif
105 #endif
106 
112 #define U_ICU_VERSION "49.1.1"
113 
118 #define U_ICU_VERSION_SHORT "49"
119 
120 #ifndef U_HIDE_INTERNAL_API
121 
124 #define U_ICU_DATA_VERSION "49.1.1"
125 #endif /* U_HIDE_INTERNAL_API */
126 
127 /*===========================================================================
128  * ICU collation framework version information
129  * Version info that can be obtained from a collator is affected by these
130  * numbers in a secret and magic way. Please use collator version as whole
131  *===========================================================================
132  */
133 
140 #define UCOL_RUNTIME_VERSION 7
141 
149 #define UCOL_BUILDER_VERSION 8
150 
156 #define UCOL_TAILORINGS_VERSION 1
157 
158 #endif