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