xref: /titanic_41/usr/src/lib/libast/common/port/lclang.h (revision 3e14f97f673e8a630f076077de35afdd43dc1587)
1 /***********************************************************************
2 *                                                                      *
3 *               This software is part of the ast package               *
4 *          Copyright (c) 1985-2010 AT&T Intellectual Property          *
5 *                      and is licensed under the                       *
6 *                  Common Public License, Version 1.0                  *
7 *                    by AT&T Intellectual Property                     *
8 *                                                                      *
9 *                A copy of the License is available at                 *
10 *            http://www.opensource.org/licenses/cpl1.0.txt             *
11 *         (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9)         *
12 *                                                                      *
13 *              Information and Software Systems Research               *
14 *                            AT&T Research                             *
15 *                           Florham Park NJ                            *
16 *                                                                      *
17 *                 Glenn Fowler <gsf@research.att.com>                  *
18 *                  David Korn <dgk@research.att.com>                   *
19 *                   Phong Vo <kpv@research.att.com>                    *
20 *                                                                      *
21 ***********************************************************************/
22 /*
23  * lc (sub)lang definitions -- very windowsish
24  */
25 
26 #if _WINIX
27 
28 #include <ast_windows.h>
29 
30 #define LANG_CHINESE_SIMPLIFIED			LANG_CHINESE
31 #define LANG_CHINESE_TRADITIONAL		LANG_CHINESE
32 #define LANG_NORWEGIAN_BOKMAL			LANG_NORWEGIAN
33 #define LANG_NORWEGIAN_NYNORSK			LANG_NORWEGIAN
34 #define LANG_SERBO_CROATIAN			LANG_CROATIAN
35 
36 #define CTRY_CZECH_REPUBLIC			CTRY_CZECH
37 
38 #define SUBLANG_CHINESE_SIMPLIFIED_CHINA	SUBLANG_CHINESE_SIMPLIFIED
39 #define SUBLANG_CHINESE_SIMPLIFIED_HONG_KONG	SUBLANG_CHINESE_HONGKONG
40 #define SUBLANG_CHINESE_SIMPLIFIED_SINGAPORE	SUBLANG_CHINESE_SINGAPORE
41 #define SUBLANG_CHINESE_TRADITIONAL_TAIWAN	SUBLANG_CHINESE_TRADITIONAL
42 #define SUBLANG_DUTCH_NETHERLANDS_ANTILLES	SUBLANG_DUTCH
43 #define SUBLANG_DUTCH_BELGIUM			SUBLANG_DUTCH_BELGIAN
44 #define SUBLANG_ENGLISH_AUSTRALIA		SUBLANG_ENGLISH_AUS
45 #define SUBLANG_ENGLISH_CANADA			SUBLANG_ENGLISH_CAN
46 #define SUBLANG_ENGLISH_IRELAND			SUBLANG_ENGLISH_EIRE
47 #define SUBLANG_ENGLISH_NEW_ZEALAND		SUBLANG_ENGLISH_NZ
48 #define SUBLANG_ENGLISH_TRINIDAD_TOBAGO		SUBLANG_ENGLISH_CARIBBEAN
49 #define SUBLANG_ENGLISH_UNITED_KINGDOM		SUBLANG_ENGLISH_UK
50 #define SUBLANG_ENGLISH_UNITED_STATES		SUBLANG_ENGLISH_US
51 #define SUBLANG_FRENCH_BELGIUM			SUBLANG_FRENCH_BELGIAN
52 #define SUBLANG_FRENCH_CANADA			SUBLANG_FRENCH_CANADIAN
53 #define SUBLANG_FRENCH_SWITZERLAND		SUBLANG_FRENCH_SWISS
54 #define SUBLANG_GERMAN_AUSTRIA			SUBLANG_GERMAN_AUSTRIAN
55 #define SUBLANG_GERMAN_SWITZERLAND		SUBLANG_GERMAN_SWISS
56 #define SUBLANG_ITALIAN_SWITZERLAND		SUBLANG_ITALIAN_SWISS
57 #define SUBLANG_NORWEGIAN_BOKMAL_NORWAY		SUBLANG_NORWEGIAN_BOKMAL
58 #define SUBLANG_NORWEGIAN_NORWAY		SUBLANG_NORWEGIAN_BOKMAL
59 #define SUBLANG_NORWEGIAN_NYNORSK_NORWAY	SUBLANG_NORWEGIAN_NYNORSK
60 #define SUBLANG_PORTUGUESE_BRAZIL		SUBLANG_PORTUGUESE_BRAZILIAN
61 
62 #endif
63