blob: 43ef1c78f0d17da38508540cfc18098a5373f003 [file] [log] [blame]
Victor Chang73229502020-09-17 13:39:19 +01001// © 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
26extern const UChar *g_umsgTypeList[];
27extern const UChar *g_umsgModifierList[];
28extern const UChar *g_umsgDateModifierList[];
29extern const int32_t g_umsgListLength;
30
31extern const UChar g_umsg_number[];
32extern const UChar g_umsg_date[];
33extern const UChar g_umsg_time[];
34extern const UChar g_umsg_choice[];
35
36extern const UChar g_umsg_currency[];
37extern const UChar g_umsg_percent[];
38extern const UChar g_umsg_integer[];
39
40extern const UChar g_umsg_short[];
41extern const UChar g_umsg_medium[];
42extern const UChar g_umsg_long[];
43extern const UChar g_umsg_full[];
44
45#endif /* #if !UCONFIG_NO_FORMATTING */
46
47#endif