uvernum.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. *******************************************************************************
  3. * Copyright (C) 2000-2016, 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. */
  16. /**
  17. * \file
  18. * \brief C API: definitions of ICU version numbers
  19. *
  20. * This file is included by uversion.h and other files. This file contains only
  21. * macros and definitions. The actual version numbers are defined here.
  22. */
  23. /*
  24. * IMPORTANT: When updating version, the following things need to be done:
  25. * source/common/unicode/uvernum.h - this file: update major, minor,
  26. * patchlevel, suffix, version, short version constants, namespace,
  27. * renaming macro, and copyright
  28. *
  29. * The following files need to be updated as well, which can be done
  30. * by running the UNIX makefile target 'update-windows-makefiles' in icu/source.
  31. *
  32. *
  33. * source/common/common.vcproj - update 'Output file name' on the link tab so
  34. * that it contains the new major/minor combination
  35. * source/i18n/i18n.vcproj - same as for the common.vcproj
  36. * source/layout/layout.vcproj - same as for the common.vcproj
  37. * source/layoutex/layoutex.vcproj - same
  38. * source/stubdata/stubdata.vcproj - same as for the common.vcproj
  39. * source/io/io.vcproj - same as for the common.vcproj
  40. * source/data/makedata.mak - change U_ICUDATA_NAME so that it contains
  41. * the new major/minor combination and the Unicode version.
  42. */
  43. #ifndef UVERNUM_H
  44. #define UVERNUM_H
  45. /** The standard copyright notice that gets compiled into each library.
  46. * This value will change in the subsequent releases of ICU
  47. * @stable ICU 2.4
  48. */
  49. #define U_COPYRIGHT_STRING \
  50. " Copyright (C) 2016, International Business Machines Corporation and others. All Rights Reserved. "
  51. /** The current ICU major version as an integer.
  52. * This value will change in the subsequent releases of ICU
  53. * @stable ICU 2.4
  54. */
  55. #define U_ICU_VERSION_MAJOR_NUM 57
  56. /** The current ICU minor version as an integer.
  57. * This value will change in the subsequent releases of ICU
  58. * @stable ICU 2.6
  59. */
  60. #define U_ICU_VERSION_MINOR_NUM 1
  61. /** The current ICU patchlevel version as an integer.
  62. * This value will change in the subsequent releases of ICU
  63. * @stable ICU 2.4
  64. */
  65. #define U_ICU_VERSION_PATCHLEVEL_NUM 0
  66. /** The current ICU build level version as an integer.
  67. * This value is for use by ICU clients. It defaults to 0.
  68. * @stable ICU 4.0
  69. */
  70. #ifndef U_ICU_VERSION_BUILDLEVEL_NUM
  71. #define U_ICU_VERSION_BUILDLEVEL_NUM 0
  72. #endif
  73. /** Glued version suffix for renamers
  74. * This value will change in the subsequent releases of ICU
  75. * @stable ICU 2.6
  76. */
  77. #define U_ICU_VERSION_SUFFIX _57
  78. /**
  79. * \def U_DEF2_ICU_ENTRY_POINT_RENAME
  80. * @internal
  81. */
  82. /**
  83. * \def U_DEF_ICU_ENTRY_POINT_RENAME
  84. * @internal
  85. */
  86. /** Glued version suffix function for renamers
  87. * This value will change in the subsequent releases of ICU.
  88. * If a custom suffix (such as matching library suffixes) is desired, this can be modified.
  89. * Note that if present, platform.h may contain an earlier definition of this macro.
  90. * \def U_ICU_ENTRY_POINT_RENAME
  91. * @stable ICU 4.2
  92. */
  93. #ifndef U_ICU_ENTRY_POINT_RENAME
  94. #ifdef U_HAVE_LIB_SUFFIX
  95. #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z) x ## y ## z
  96. #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y,z) U_DEF_ICU_ENTRY_POINT_RENAME(x,y,z)
  97. #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX,U_LIB_SUFFIX_C_NAME)
  98. #else
  99. #define U_DEF_ICU_ENTRY_POINT_RENAME(x,y) x ## y
  100. #define U_DEF2_ICU_ENTRY_POINT_RENAME(x,y) U_DEF_ICU_ENTRY_POINT_RENAME(x,y)
  101. #define U_ICU_ENTRY_POINT_RENAME(x) U_DEF2_ICU_ENTRY_POINT_RENAME(x,U_ICU_VERSION_SUFFIX)
  102. #endif
  103. #endif
  104. /** The current ICU library version as a dotted-decimal string. The patchlevel
  105. * only appears in this string if it non-zero.
  106. * This value will change in the subsequent releases of ICU
  107. * @stable ICU 2.4
  108. */
  109. #define U_ICU_VERSION "57.1"
  110. /** The current ICU library major/minor version as a string without dots, for library name suffixes.
  111. * This value will change in the subsequent releases of ICU
  112. * @stable ICU 2.6
  113. */
  114. #define U_ICU_VERSION_SHORT "57"
  115. #ifndef U_HIDE_INTERNAL_API
  116. /** Data version in ICU4C.
  117. * @internal ICU 4.4 Internal Use Only
  118. **/
  119. #define U_ICU_DATA_VERSION "57.1"
  120. #endif /* U_HIDE_INTERNAL_API */
  121. /*===========================================================================
  122. * ICU collation framework version information
  123. * Version info that can be obtained from a collator is affected by these
  124. * numbers in a secret and magic way. Please use collator version as whole
  125. *===========================================================================
  126. */
  127. /**
  128. * Collation runtime version (sort key generator, strcoll).
  129. * If the version is different, sort keys for the same string could be different.
  130. * This value may change in subsequent releases of ICU.
  131. * @stable ICU 2.4
  132. */
  133. #define UCOL_RUNTIME_VERSION 9
  134. /**
  135. * Collation builder code version.
  136. * When this is different, the same tailoring might result
  137. * in assigning different collation elements to code points.
  138. * This value may change in subsequent releases of ICU.
  139. * @stable ICU 2.4
  140. */
  141. #define UCOL_BUILDER_VERSION 9
  142. #ifndef U_HIDE_DEPRECATED_API
  143. /**
  144. * Constant 1.
  145. * This was intended to be the version of collation tailorings,
  146. * but instead the tailoring data carries a version number.
  147. * @deprecated ICU 54
  148. */
  149. #define UCOL_TAILORINGS_VERSION 1
  150. #endif /* U_HIDE_DEPRECATED_API */
  151. #endif