1 /* 2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. 3 * All rights reserved. 4 * 5 * This program is free software; you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License along 16 * with this program; if not, write to the Free Software Foundation, Inc., 17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 * 19 * 20 * File: country.h 21 * 22 * Purpose: Country Code information 23 * 24 * Author: Lucas Lin 25 * 26 * Date: Dec 23, 2004 27 * 28 */ 29 30 #ifndef __COUNTRY_H__ 31 #define __COUNTRY_H__ 32 33 #include "ttype.h" 34 35 /************************************************************************ 36 * The definition here should be complied with the INF country order 37 * Please check with VNWL.inf/VNWL64.inf/VNWL*.inf 38 ************************************************************************/ 39 typedef enum _COUNTRY_CODE { 40 CCODE_FCC = 0, 41 CCODE_TELEC, 42 CCODE_ETSI, 43 CCODE_RESV3, 44 CCODE_RESV4, 45 CCODE_RESV5, 46 CCODE_RESV6, 47 CCODE_RESV7, 48 CCODE_RESV8, 49 CCODE_RESV9, 50 CCODE_RESVa, 51 CCODE_RESVb, 52 CCODE_RESVc, 53 CCODE_RESVd, 54 CCODE_RESVe, 55 CCODE_ALLBAND, 56 CCODE_ALBANIA, 57 CCODE_ALGERIA, 58 CCODE_ARGENTINA, 59 CCODE_ARMENIA, 60 CCODE_AUSTRALIA, 61 CCODE_AUSTRIA, 62 CCODE_AZERBAIJAN, 63 CCODE_BAHRAIN, 64 CCODE_BELARUS, 65 CCODE_BELGIUM, 66 CCODE_BELIZE, 67 CCODE_BOLIVIA, 68 CCODE_BRAZIL, 69 CCODE_BRUNEI_DARUSSALAM, 70 CCODE_BULGARIA, 71 CCODE_CANADA, 72 CCODE_CHILE, 73 CCODE_CHINA, 74 CCODE_COLOMBIA, 75 CCODE_COSTA_RICA, 76 CCODE_CROATIA, 77 CCODE_CYPRUS, 78 CCODE_CZECH, 79 CCODE_DENMARK, 80 CCODE_DOMINICAN_REPUBLIC, 81 CCODE_ECUADOR, 82 CCODE_EGYPT, 83 CCODE_EL_SALVADOR, 84 CCODE_ESTONIA, 85 CCODE_FINLAND, 86 CCODE_FRANCE, 87 CCODE_GERMANY, 88 CCODE_GREECE, 89 CCODE_GEORGIA, 90 CCODE_GUATEMALA, 91 CCODE_HONDURAS, 92 CCODE_HONG_KONG, 93 CCODE_HUNGARY, 94 CCODE_ICELAND, 95 CCODE_INDIA, 96 CCODE_INDONESIA, 97 CCODE_IRAN, 98 CCODE_IRELAND, 99 CCODE_ITALY, 100 CCODE_ISRAEL, 101 CCODE_JAPAN, 102 CCODE_JORDAN, 103 CCODE_KAZAKHSTAN, 104 CCODE_KUWAIT, 105 CCODE_LATVIA, 106 CCODE_LEBANON, 107 CCODE_LEICHTENSTEIN, 108 CCODE_LITHUANIA, 109 CCODE_LUXEMBURG, 110 CCODE_MACAU, 111 CCODE_MACEDONIA, 112 CCODE_MALTA, 113 CCODE_MALAYSIA, 114 CCODE_MEXICO, 115 CCODE_MONACO, 116 CCODE_MOROCCO, 117 CCODE_NETHERLANDS, 118 CCODE_NEW_ZEALAND, 119 CCODE_NORTH_KOREA, 120 CCODE_NORWAY, 121 CCODE_OMAN, 122 CCODE_PAKISTAN, 123 CCODE_PANAMA, 124 CCODE_PERU, 125 CCODE_PHILIPPINES, 126 CCODE_POLAND, 127 CCODE_PORTUGAL, 128 CCODE_PUERTO_RICO, 129 CCODE_QATAR, 130 CCODE_ROMANIA, 131 CCODE_RUSSIA, 132 CCODE_SAUDI_ARABIA, 133 CCODE_SINGAPORE, 134 CCODE_SLOVAKIA, 135 CCODE_SLOVENIA, 136 CCODE_SOUTH_AFRICA, 137 CCODE_SOUTH_KOREA, 138 CCODE_SPAIN, 139 CCODE_SWEDEN, 140 CCODE_SWITZERLAND, 141 CCODE_SYRIA, 142 CCODE_TAIWAN, 143 CCODE_THAILAND, 144 CCODE_TRINIDAD_TOBAGO, 145 CCODE_TUNISIA, 146 CCODE_TURKEY, 147 CCODE_UK, 148 CCODE_UKRAINE, 149 CCODE_UNITED_ARAB_EMIRATES, 150 CCODE_UNITED_STATES, 151 CCODE_URUGUAY, 152 CCODE_UZBEKISTAN, 153 CCODE_VENEZUELA, 154 CCODE_VIETNAM, 155 CCODE_YEMEN, 156 CCODE_ZIMBABWE, 157 CCODE_JAPAN_W52_W53, 158 CCODE_MAX 159 } COUNTRY_CODE; 160 161 #endif /* __COUNTRY_H__ */ 162