~ubuntu-branches/ubuntu/gutsy/icu/gutsy-updates

« back to all changes in this revision

Viewing changes to source/i18n/umsg_imp.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2005-11-19 11:29:31 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20051119112931-vcizkrp10tli4enw
Tags: 3.4-3
Explicitly build with g++ 3.4.  The current ICU fails its test suite
with 4.0 but not with 3.4.  Future versions should work properly with
4.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
/* global variables used by the C and C++ message formatting API. */
21
 
 
22
 
extern const UChar  *g_umsgTypeList[];
23
 
extern const UChar  *g_umsgModifierList[];
24
 
extern const UChar  *g_umsgDateModifierList[];
25
 
extern const int32_t g_umsgListLength;
26
 
 
27
 
extern const UChar g_umsg_number[];
28
 
extern const UChar g_umsg_date[];
29
 
extern const UChar g_umsg_time[];
30
 
extern const UChar g_umsg_choice[];
31
 
 
32
 
extern const UChar g_umsg_currency[];
33
 
extern const UChar g_umsg_percent[];
34
 
extern const UChar g_umsg_integer[];
35
 
 
36
 
extern const UChar g_umsg_short[];
37
 
extern const UChar g_umsg_medium[];
38
 
extern const UChar g_umsg_long[];
39
 
extern const UChar g_umsg_full[];
40
 
 
41
 
 
42
 
#endif