1 // © 2016 and later: Unicode, Inc. and others. 2 // License & terms of use: http://www.unicode.org/copyright.html 3 /* 4 ********************************************************************** 5 * Copyright (C) 2001, International Business Machines 6 * Corporation and others. All Rights Reserved. 7 ********************************************************************** 8 * file name: umsg_imp.h 9 * encoding: UTF-8 10 * tab size: 8 (not used) 11 * indentation:4 12 * 13 * created on: 2001jun22 14 * created by: George Rhoten 15 */ 16 17 #ifndef UMISC_H 18 #define UMISC_H 19 20 #include "unicode/utypes.h" 21 22 #if !UCONFIG_NO_FORMATTING 23 24 /* global variables used by the C and C++ message formatting API. */ 25 26 extern const UChar *g_umsgTypeList[]; 27 extern const UChar *g_umsgModifierList[]; 28 extern const UChar *g_umsgDateModifierList[]; 29 extern const int32_t g_umsgListLength; 30 31 extern const UChar g_umsg_number[]; 32 extern const UChar g_umsg_date[]; 33 extern const UChar g_umsg_time[]; 34 extern const UChar g_umsg_choice[]; 35 36 extern const UChar g_umsg_currency[]; 37 extern const UChar g_umsg_percent[]; 38 extern const UChar g_umsg_integer[]; 39 40 extern const UChar g_umsg_short[]; 41 extern const UChar g_umsg_medium[]; 42 extern const UChar g_umsg_long[]; 43 extern const UChar g_umsg_full[]; 44 45 #endif /* #if !UCONFIG_NO_FORMATTING */ 46 47 #endif 48