ICU 4.8.1.1  4.8.1.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
uvernum.h
1 /*
2 *******************************************************************************
3 * Copyright (C) 2000-2011, 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) 2011, International Business Machines Corporation and others. All Rights Reserved. "
46 
51 #define U_ICU_VERSION_MAJOR_NUM 4
52 
57 #define U_ICU_VERSION_MINOR_NUM 8
58 
63 #define U_ICU_VERSION_PATCHLEVEL_NUM 1
64 
69 #ifndef U_ICU_VERSION_BUILDLEVEL_NUM
70 #define U_ICU_VERSION_BUILDLEVEL_NUM 1
71 #endif
72 
77 #define U_ICU_VERSION_SUFFIX _48
78 
85 #ifndef U_ICU_ENTRY_POINT_RENAME
86 #define U_ICU_ENTRY_POINT_RENAME(x) x ## _48
87 #endif
88 
94 #define U_ICU_VERSION "4.8.1.1"
95 
100 #define U_ICU_VERSION_SHORT "48"
101 
105 #define U_ICU_DATA_VERSION "4.8.1"
106 
107 /*===========================================================================
108  * ICU collation framework version information
109  * Version info that can be obtained from a collator is affected by these
110  * numbers in a secret and magic way. Please use collator version as whole
111  *===========================================================================
112  */
113 
120 #define UCOL_RUNTIME_VERSION 7
121 
129 #define UCOL_BUILDER_VERSION 8
130 
136 #define UCOL_TAILORINGS_VERSION 1
137 
138 #endif