00001 // © 2016 and later: Unicode, Inc. and others. 00002 // License & terms of use: http://www.unicode.org/copyright.html 00003 /* 00004 ******************************************************************************* 00005 * Copyright (C) 2000-2016, International Business Machines 00006 * Corporation and others. All Rights Reserved. 00007 ******************************************************************************* 00008 * 00009 * file name: uvernum.h 00010 * encoding: UTF-8 00011 * tab size: 8 (not used) 00012 * indentation:4 00013 * 00014 * Created by: Vladimir Weinstein 00015 * Updated by: Steven R. Loomis 00016 * 00017 */ 00018 00027 /* 00028 * IMPORTANT: When updating version, the following things need to be done: 00029 * source/common/unicode/uvernum.h - this file: update major, minor, 00030 * patchlevel, suffix, version, short version constants, namespace, 00031 * renaming macro, and copyright 00032 * 00033 * The following files need to be updated as well, which can be done 00034 * by running the UNIX makefile target 'update-windows-makefiles' in icu/source. 00035 * 00036 * 00037 * source/common/common_uwp.vcxproj 00038 * source/common/common.vcxproj - update 'Output file name' on the link tab so 00039 * that it contains the new major/minor combination 00040 * source/i18n/i18n.vcxproj - same as for the common.vcxproj 00041 * source/i18n/i18n_uwp.vcxproj - same as for the common_uwp.vcxproj 00042 * source/layoutex/layoutex.vcproj - same 00043 * source/stubdata/stubdata.vcproj - same as for the common.vcxproj 00044 * source/io/io.vcproj - same as for the common.vcxproj 00045 * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains 00046 * the new major/minor combination and the Unicode version. 00047 */ 00048 00049 #ifndef UVERNUM_H 00050 #define UVERNUM_H 00051 00056 #define U_COPYRIGHT_STRING \ 00057 " Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html " 00058 00063 #define U_ICU_VERSION_MAJOR_NUM 63 00064 00069 #define U_ICU_VERSION_MINOR_NUM 1 00070 00075 #define U_ICU_VERSION_PATCHLEVEL_NUM 0 00076 00081 #ifndef U_ICU_VERSION_BUILDLEVEL_NUM 00082 #define U_ICU_VERSION_BUILDLEVEL_NUM 0 00083 #endif 00084 00089 #define U_ICU_VERSION_SUFFIX _63 00090 00107 #ifndef U_ICU_ENTRY_POINT_RENAME 00108 #ifdef U_HAVE_LIB_SUFFIX 00109 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) x ## y ## z 00110 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y,z) U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) 00111 #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX,U_LIB_SUFFIX_C_NAME) 00112 #else 00113 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y 00114 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y) 00115 #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX) 00116 #endif 00117 #endif 00118 00124 #define U_ICU_VERSION "63.1" 00125 00137 #define U_ICU_VERSION_SHORT "63" 00138 00139 #ifndef U_HIDE_INTERNAL_API 00140 00143 #define U_ICU_DATA_VERSION "63.1" 00144 #endif /* U_HIDE_INTERNAL_API */ 00145 00146 /*=========================================================================== 00147 * ICU collation framework version information 00148 * Version info that can be obtained from a collator is affected by these 00149 * numbers in a secret and magic way. Please use collator version as whole 00150 *=========================================================================== 00151 */ 00152 00159 #define UCOL_RUNTIME_VERSION 9 00160 00168 #define UCOL_BUILDER_VERSION 9 00169 00170 #ifndef U_HIDE_DEPRECATED_API 00171 00177 #define UCOL_TAILORINGS_VERSION 1 00178 #endif /* U_HIDE_DEPRECATED_API */ 00179 00180 #endif
1.6.1