diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /intl/icu/source/i18n/umsg_imp.h | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'intl/icu/source/i18n/umsg_imp.h')
-rw-r--r-- | intl/icu/source/i18n/umsg_imp.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/intl/icu/source/i18n/umsg_imp.h b/intl/icu/source/i18n/umsg_imp.h new file mode 100644 index 0000000000..4c793b17d3 --- /dev/null +++ b/intl/icu/source/i18n/umsg_imp.h @@ -0,0 +1,47 @@ +// © 2016 and later: Unicode, Inc. and others. +// License & terms of use: http://www.unicode.org/copyright.html +/* +********************************************************************** +* Copyright (C) 2001, International Business Machines +* Corporation and others. All Rights Reserved. +********************************************************************** +* file name: umsg_imp.h +* encoding: UTF-8 +* tab size: 8 (not used) +* indentation:4 +* +* created on: 2001jun22 +* created by: George Rhoten +*/ + +#ifndef UMISC_H +#define UMISC_H + +#include "unicode/utypes.h" + +#if !UCONFIG_NO_FORMATTING + +/* global variables used by the C and C++ message formatting API. */ + +extern const char16_t *g_umsgTypeList[]; +extern const char16_t *g_umsgModifierList[]; +extern const char16_t *g_umsgDateModifierList[]; +extern const int32_t g_umsgListLength; + +extern const char16_t g_umsg_number[]; +extern const char16_t g_umsg_date[]; +extern const char16_t g_umsg_time[]; +extern const char16_t g_umsg_choice[]; + +extern const char16_t g_umsg_currency[]; +extern const char16_t g_umsg_percent[]; +extern const char16_t g_umsg_integer[]; + +extern const char16_t g_umsg_short[]; +extern const char16_t g_umsg_medium[]; +extern const char16_t g_umsg_long[]; +extern const char16_t g_umsg_full[]; + +#endif /* #if !UCONFIG_NO_FORMATTING */ + +#endif |