1 /*********************************************************************** 2 * * 3 * This software is part of the ast package * 4 * Copyright (c) 1985-2011 AT&T Intellectual Property * 5 * and is licensed under the * 6 * Eclipse Public License, Version 1.0 * 7 * by AT&T Intellectual Property * 8 * * 9 * A copy of the License is available at * 10 * http://www.eclipse.org/org/documents/epl-v10.html * 11 * (with md5 checksum b35adb5213ca9657e911e9befb180842) * 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 #ifndef LANG_CHINESE_SIMPLIFIED 31 #define LANG_CHINESE_SIMPLIFIED LANG_CHINESE 32 #endif 33 #ifndef LANG_CHINESE_TRADITIONAL 34 #define LANG_CHINESE_TRADITIONAL LANG_CHINESE 35 #endif 36 #ifndef LANG_NORWEGIAN_BOKMAL 37 #define LANG_NORWEGIAN_BOKMAL LANG_NORWEGIAN 38 #endif 39 #ifndef LANG_NORWEGIAN_NYNORSK 40 #define LANG_NORWEGIAN_NYNORSK LANG_NORWEGIAN 41 #endif 42 #ifndef LANG_SERBO_CROATIAN 43 #define LANG_SERBO_CROATIAN LANG_CROATIAN 44 #endif 45 46 #ifndef CTRY_CZECH_REPUBLIC 47 #define CTRY_CZECH_REPUBLIC CTRY_CZECH 48 #endif 49 50 #ifndef SUBLANG_CHINESE_SIMPLIFIED_CHINA 51 #define SUBLANG_CHINESE_SIMPLIFIED_CHINA SUBLANG_CHINESE_SIMPLIFIED 52 #endif 53 #ifndef SUBLANG_CHINESE_SIMPLIFIED_HONG_KONG 54 #define SUBLANG_CHINESE_SIMPLIFIED_HONG_KONG SUBLANG_CHINESE_HONGKONG 55 #endif 56 #ifndef SUBLANG_CHINESE_SIMPLIFIED_SINGAPORE 57 #define SUBLANG_CHINESE_SIMPLIFIED_SINGAPORE SUBLANG_CHINESE_SINGAPORE 58 #endif 59 #ifndef SUBLANG_CHINESE_TRADITIONAL_TAIWAN 60 #define SUBLANG_CHINESE_TRADITIONAL_TAIWAN SUBLANG_CHINESE_TRADITIONAL 61 #endif 62 #ifndef SUBLANG_DUTCH_NETHERLANDS_ANTILLES 63 #define SUBLANG_DUTCH_NETHERLANDS_ANTILLES SUBLANG_DUTCH 64 #endif 65 #ifndef SUBLANG_DUTCH_BELGIUM 66 #define SUBLANG_DUTCH_BELGIUM SUBLANG_DUTCH_BELGIAN 67 #endif 68 #ifndef SUBLANG_ENGLISH_AUSTRALIA 69 #define SUBLANG_ENGLISH_AUSTRALIA SUBLANG_ENGLISH_AUS 70 #endif 71 #ifndef SUBLANG_ENGLISH_CANADA 72 #define SUBLANG_ENGLISH_CANADA SUBLANG_ENGLISH_CAN 73 #endif 74 #ifndef SUBLANG_ENGLISH_IRELAND 75 #define SUBLANG_ENGLISH_IRELAND SUBLANG_ENGLISH_EIRE 76 #endif 77 #ifndef SUBLANG_ENGLISH_NEW_ZEALAND 78 #define SUBLANG_ENGLISH_NEW_ZEALAND SUBLANG_ENGLISH_NZ 79 #endif 80 #ifndef SUBLANG_ENGLISH_TRINIDAD_TOBAGO 81 #define SUBLANG_ENGLISH_TRINIDAD_TOBAGO SUBLANG_ENGLISH_CARIBBEAN 82 #endif 83 #ifndef SUBLANG_ENGLISH_UNITED_KINGDOM 84 #define SUBLANG_ENGLISH_UNITED_KINGDOM SUBLANG_ENGLISH_UK 85 #endif 86 #ifndef SUBLANG_ENGLISH_UNITED_STATES 87 #define SUBLANG_ENGLISH_UNITED_STATES SUBLANG_ENGLISH_US 88 #endif 89 #ifndef SUBLANG_FRENCH_BELGIUM 90 #define SUBLANG_FRENCH_BELGIUM SUBLANG_FRENCH_BELGIAN 91 #endif 92 #ifndef SUBLANG_FRENCH_CANADA 93 #define SUBLANG_FRENCH_CANADA SUBLANG_FRENCH_CANADIAN 94 #endif 95 #ifndef SUBLANG_FRENCH_SWITZERLAND 96 #define SUBLANG_FRENCH_SWITZERLAND SUBLANG_FRENCH_SWISS 97 #endif 98 #ifndef SUBLANG_GERMAN_AUSTRIA 99 #define SUBLANG_GERMAN_AUSTRIA SUBLANG_GERMAN_AUSTRIAN 100 #endif 101 #ifndef SUBLANG_GERMAN_SWITZERLAND 102 #define SUBLANG_GERMAN_SWITZERLAND SUBLANG_GERMAN_SWISS 103 #endif 104 #ifndef SUBLANG_ITALIAN_SWITZERLAND 105 #define SUBLANG_ITALIAN_SWITZERLAND SUBLANG_ITALIAN_SWISS 106 #endif 107 #ifndef SUBLANG_NORWEGIAN_BOKMAL_NORWAY 108 #define SUBLANG_NORWEGIAN_BOKMAL_NORWAY SUBLANG_NORWEGIAN_BOKMAL 109 #endif 110 #ifndef SUBLANG_NORWEGIAN_NORWAY 111 #define SUBLANG_NORWEGIAN_NORWAY SUBLANG_NORWEGIAN_BOKMAL 112 #endif 113 #ifndef SUBLANG_NORWEGIAN_NYNORSK_NORWAY 114 #define SUBLANG_NORWEGIAN_NYNORSK_NORWAY SUBLANG_NORWEGIAN_NYNORSK 115 #endif 116 #ifndef SUBLANG_PORTUGUESE_BRAZIL 117 #define SUBLANG_PORTUGUESE_BRAZIL SUBLANG_PORTUGUESE_BRAZILIAN 118 #endif 119 120 #endif 121