Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
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 */
15 #ifndef UMISC_H
16 #define UMISC_H
18 #include "unicode/utypes.h"
20 #if !UCONFIG_NO_FORMATTING
22 /* global variables used by the C and C++ message formatting API. */
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;
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[];
34 extern const UChar g_umsg_currency[];
35 extern const UChar g_umsg_percent[];
36 extern const UChar g_umsg_integer[];
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[];
43 #endif /* #if !UCONFIG_NO_FORMATTING */
45 #endif