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
24extern const UChar  *g_umsgTypeList[];
25extern const UChar  *g_umsgModifierList[];
26extern const UChar  *g_umsgDateModifierList[];
27extern const int32_t g_umsgListLength;
28
29extern const UChar g_umsg_number[];
30extern const UChar g_umsg_date[];
31extern const UChar g_umsg_time[];
32extern const UChar g_umsg_choice[];
33
34extern const UChar g_umsg_currency[];
35extern const UChar g_umsg_percent[];
36extern const UChar g_umsg_integer[];
37
38extern const UChar g_umsg_short[];
39extern const UChar g_umsg_medium[];
40extern const UChar g_umsg_long[];
41extern const UChar g_umsg_full[];
42
43#endif /* #if !UCONFIG_NO_FORMATTING */
44
45#endif
46