ICU 64.1  64.1
uvernum.h
Go to the documentation of this file.
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4 *******************************************************************************
5 * Copyright (C) 2000-2016, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
8 *
9 * file name: uvernum.h
10 * encoding: UTF-8
11 * tab size: 8 (not used)
12 * indentation:4
13 *
14 * Created by: Vladimir Weinstein
15 * Updated by: Steven R. Loomis
16 *
17 */
18 
27  /*
28  * IMPORTANT: When updating version, the following things need to be done:
29  * source/common/unicode/uvernum.h - this file: update major, minor,
30  * patchlevel, suffix, version, short version constants, namespace,
31  * renaming macro, and copyright
32  *
33  * The following files need to be updated as well, which can be done
34  * by running the UNIX makefile target 'update-windows-makefiles' in icu/source.
35  *
36  *
37  * source/common/common_uwp.vcxproj
38  * source/common/common.vcxproj - update 'Output file name' on the link tab so
39  * that it contains the new major/minor combination
40  * source/i18n/i18n.vcxproj - same as for the common.vcxproj
41  * source/i18n/i18n_uwp.vcxproj - same as for the common_uwp.vcxproj
42  * source/layoutex/layoutex.vcproj - same
43  * source/stubdata/stubdata.vcproj - same as for the common.vcxproj
44  * source/io/io.vcproj - same as for the common.vcxproj
45  * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains
46  * the new major/minor combination and the Unicode version.
47  */
48 
49 #ifndef UVERNUM_H
50 #define UVERNUM_H
51 
56 #define U_COPYRIGHT_STRING \
57  " Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html "
58 
63 #define U_ICU_VERSION_MAJOR_NUM 64
64 
69 #define U_ICU_VERSION_MINOR_NUM 1
70 
75 #define U_ICU_VERSION_PATCHLEVEL_NUM 0
76 
81 #ifndef U_ICU_VERSION_BUILDLEVEL_NUM
82 #define U_ICU_VERSION_BUILDLEVEL_NUM 0
83 #endif
84 
89 #define U_ICU_VERSION_SUFFIX _64
90 
106 /*
107  * Disable the version suffix. Use the custom suffix if exists.
108  * \def U_DISABLE_VERSION_SUFFIX
109  * @internal
110  */
111 
112 #ifndef U_ICU_ENTRY_POINT_RENAME
113 #ifdef U_HAVE_LIB_SUFFIX
114 # if !U_DISABLE_VERSION_SUFFIX
115 # define U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) x ## y ## z
116 # define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y,z) U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z)
117 # define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX,U_LIB_SUFFIX_C_NAME)
118 # else
119 # define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
120 # define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y)
121 # define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_LIB_SUFFIX_C_NAME)
122 # endif
123 #elif !U_DISABLE_VERSION_SUFFIX
124 # define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
125 # define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y)
126 # define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
127 #else
128 # define U_ICU_ENTRY_POINT_RENAME(x) x
129 #endif
130 #endif
131 
137 #define U_ICU_VERSION "64.1"
138 
150 #define U_ICU_VERSION_SHORT "64"
151 
152 #ifndef U_HIDE_INTERNAL_API
153 
156 #define U_ICU_DATA_VERSION "64.1"
157 #endif /* U_HIDE_INTERNAL_API */
158 
159 /*===========================================================================
160  * ICU collation framework version information
161  * Version info that can be obtained from a collator is affected by these
162  * numbers in a secret and magic way. Please use collator version as whole
163  *===========================================================================
164  */
165 
172 #define UCOL_RUNTIME_VERSION 9
173 
181 #define UCOL_BUILDER_VERSION 9
182 
183 #ifndef U_HIDE_DEPRECATED_API
184 
190 #define UCOL_TAILORINGS_VERSION 1
191 #endif /* U_HIDE_DEPRECATED_API */
192 
193 #endif