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