12e5b6d6dSopenharmony_ci// © 2016 and later: Unicode, Inc. and others. 22e5b6d6dSopenharmony_ci// License & terms of use: http://www.unicode.org/copyright.html 32e5b6d6dSopenharmony_ci/* 42e5b6d6dSopenharmony_ci********************************************************************** 52e5b6d6dSopenharmony_ci* Copyright (C) 2001, International Business Machines 62e5b6d6dSopenharmony_ci* Corporation and others. All Rights Reserved. 72e5b6d6dSopenharmony_ci********************************************************************** 82e5b6d6dSopenharmony_ci* file name: umsg_imp.h 92e5b6d6dSopenharmony_ci* encoding: UTF-8 102e5b6d6dSopenharmony_ci* tab size: 8 (not used) 112e5b6d6dSopenharmony_ci* indentation:4 122e5b6d6dSopenharmony_ci* 132e5b6d6dSopenharmony_ci* created on: 2001jun22 142e5b6d6dSopenharmony_ci* created by: George Rhoten 152e5b6d6dSopenharmony_ci*/ 162e5b6d6dSopenharmony_ci 172e5b6d6dSopenharmony_ci#ifndef UMISC_H 182e5b6d6dSopenharmony_ci#define UMISC_H 192e5b6d6dSopenharmony_ci 202e5b6d6dSopenharmony_ci#include "unicode/utypes.h" 212e5b6d6dSopenharmony_ci 222e5b6d6dSopenharmony_ci#if !UCONFIG_NO_FORMATTING 232e5b6d6dSopenharmony_ci 242e5b6d6dSopenharmony_ci/* global variables used by the C and C++ message formatting API. */ 252e5b6d6dSopenharmony_ci 262e5b6d6dSopenharmony_ciextern const UChar *g_umsgTypeList[]; 272e5b6d6dSopenharmony_ciextern const UChar *g_umsgModifierList[]; 282e5b6d6dSopenharmony_ciextern const UChar *g_umsgDateModifierList[]; 292e5b6d6dSopenharmony_ciextern const int32_t g_umsgListLength; 302e5b6d6dSopenharmony_ci 312e5b6d6dSopenharmony_ciextern const UChar g_umsg_number[]; 322e5b6d6dSopenharmony_ciextern const UChar g_umsg_date[]; 332e5b6d6dSopenharmony_ciextern const UChar g_umsg_time[]; 342e5b6d6dSopenharmony_ciextern const UChar g_umsg_choice[]; 352e5b6d6dSopenharmony_ci 362e5b6d6dSopenharmony_ciextern const UChar g_umsg_currency[]; 372e5b6d6dSopenharmony_ciextern const UChar g_umsg_percent[]; 382e5b6d6dSopenharmony_ciextern const UChar g_umsg_integer[]; 392e5b6d6dSopenharmony_ci 402e5b6d6dSopenharmony_ciextern const UChar g_umsg_short[]; 412e5b6d6dSopenharmony_ciextern const UChar g_umsg_medium[]; 422e5b6d6dSopenharmony_ciextern const UChar g_umsg_long[]; 432e5b6d6dSopenharmony_ciextern const UChar g_umsg_full[]; 442e5b6d6dSopenharmony_ci 452e5b6d6dSopenharmony_ci#endif /* #if !UCONFIG_NO_FORMATTING */ 462e5b6d6dSopenharmony_ci 472e5b6d6dSopenharmony_ci#endif 48