ICU 49.1.1  49.1.1
uvernum.h
00001 /*
00002 *******************************************************************************
00003 *   Copyright (C) 2000-2012, International Business Machines
00004 *   Corporation and others.  All Rights Reserved.
00005 *******************************************************************************
00006 *
00007 *   file name:  uvernum.h
00008 *   encoding:   US-ASCII
00009 *   tab size:   8 (not used)
00010 *   indentation:4
00011 *
00012 *   Created by: Vladimir Weinstein
00013 *   Updated by: Steven R. Loomis
00014 *
00015 *  Gets included by uversion.h and other files.
00016 *
00017 * IMPORTANT: When updating version, the following things need to be done:
00018 * source/common/unicode/uvernum.h - this file: update major, minor,
00019 *        patchlevel, suffix, version, short version constants, namespace,
00020 *                    renaming macro, and copyright
00021 *
00022 * The following files need to be updated as well, which can be done
00023 *  by running the UNIX makefile target 'update-windows-makefiles' in icu/source.
00024 *
00025 *
00026 * source/common/common.vcproj - update 'Output file name' on the link tab so
00027 *                   that it contains the new major/minor combination
00028 * source/i18n/i18n.vcproj - same as for the common.vcproj
00029 * source/layout/layout.vcproj - same as for the common.vcproj
00030 * source/layoutex/layoutex.vcproj - same
00031 * source/stubdata/stubdata.vcproj - same as for the common.vcproj
00032 * source/io/io.vcproj - same as for the common.vcproj
00033 * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains
00034 *                            the new major/minor combination and the Unicode version.
00035 */
00036 
00037 #ifndef UVERNUM_H
00038 #define UVERNUM_H
00039 
00044 #define U_COPYRIGHT_STRING \
00045   " Copyright (C) 2012, International Business Machines Corporation and others. All Rights Reserved. "
00046 
00051 #define U_ICU_VERSION_MAJOR_NUM 49
00052 
00057 #define U_ICU_VERSION_MINOR_NUM 1
00058 
00063 #define U_ICU_VERSION_PATCHLEVEL_NUM 1
00064 
00069 #ifndef U_ICU_VERSION_BUILDLEVEL_NUM
00070 #define U_ICU_VERSION_BUILDLEVEL_NUM 0
00071 #endif
00072 
00077 #define U_ICU_VERSION_SUFFIX _49
00078 
00095 #ifndef U_ICU_ENTRY_POINT_RENAME
00096 #ifdef U_HAVE_LIB_SUFFIX
00097 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) x ## y ##  z
00098 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y,z) U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z)
00099 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX,U_LIB_SUFFIX_C_NAME)
00100 #else
00101 #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
00102 #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y)
00103 #define U_ICU_ENTRY_POINT_RENAME(x)    U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
00104 #endif
00105 #endif
00106 
00112 #define U_ICU_VERSION "49.1.1"
00113 
00118 #define U_ICU_VERSION_SHORT "49"
00119 
00120 #ifndef U_HIDE_INTERNAL_API
00121 
00124 #define U_ICU_DATA_VERSION "49.1.1"
00125 #endif  /* U_HIDE_INTERNAL_API */
00126 
00127 /*===========================================================================
00128  * ICU collation framework version information
00129  * Version info that can be obtained from a collator is affected by these
00130  * numbers in a secret and magic way. Please use collator version as whole
00131  *===========================================================================
00132  */
00133 
00140 #define UCOL_RUNTIME_VERSION 7
00141 
00149 #define UCOL_BUILDER_VERSION 8
00150 
00156 #define UCOL_TAILORINGS_VERSION 1
00157 
00158 #endif