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/************************************************************************
34 * The definition here should be complied with the INF country order
35 * Please check with VNWL.inf/VNWL64.inf/VNWL*.inf
36 ************************************************************************/
37typedef enum _COUNTRY_CODE {
38    CCODE_FCC = 0,
39    CCODE_TELEC,
40    CCODE_ETSI,
41    CCODE_RESV3,
42    CCODE_RESV4,
43    CCODE_RESV5,
44    CCODE_RESV6,
45    CCODE_RESV7,
46    CCODE_RESV8,
47    CCODE_RESV9,
48    CCODE_RESVa,
49    CCODE_RESVb,
50    CCODE_RESVc,
51    CCODE_RESVd,
52    CCODE_RESVe,
53    CCODE_ALLBAND,
54    CCODE_ALBANIA,
55    CCODE_ALGERIA,
56    CCODE_ARGENTINA,
57    CCODE_ARMENIA,
58    CCODE_AUSTRALIA,
59    CCODE_AUSTRIA,
60    CCODE_AZERBAIJAN,
61    CCODE_BAHRAIN,
62    CCODE_BELARUS,
63    CCODE_BELGIUM,
64    CCODE_BELIZE,
65    CCODE_BOLIVIA,
66    CCODE_BRAZIL,
67    CCODE_BRUNEI_DARUSSALAM,
68    CCODE_BULGARIA,
69    CCODE_CANADA,
70    CCODE_CHILE,
71    CCODE_CHINA,
72    CCODE_COLOMBIA,
73    CCODE_COSTA_RICA,
74    CCODE_CROATIA,
75    CCODE_CYPRUS,
76    CCODE_CZECH,
77    CCODE_DENMARK,
78    CCODE_DOMINICAN_REPUBLIC,
79    CCODE_ECUADOR,
80    CCODE_EGYPT,
81    CCODE_EL_SALVADOR,
82    CCODE_ESTONIA,
83    CCODE_FINLAND,
84    CCODE_FRANCE,
85    CCODE_GERMANY,
86    CCODE_GREECE,
87    CCODE_GEORGIA,
88    CCODE_GUATEMALA,
89    CCODE_HONDURAS,
90    CCODE_HONG_KONG,
91    CCODE_HUNGARY,
92    CCODE_ICELAND,
93    CCODE_INDIA,
94    CCODE_INDONESIA,
95    CCODE_IRAN,
96    CCODE_IRELAND,
97    CCODE_ITALY,
98    CCODE_ISRAEL,
99    CCODE_JAPAN,
100    CCODE_JORDAN,
101    CCODE_KAZAKHSTAN,
102    CCODE_KUWAIT,
103    CCODE_LATVIA,
104    CCODE_LEBANON,
105    CCODE_LEICHTENSTEIN,
106    CCODE_LITHUANIA,
107    CCODE_LUXEMBURG,
108    CCODE_MACAU,
109    CCODE_MACEDONIA,
110    CCODE_MALTA,
111    CCODE_MALAYSIA,
112    CCODE_MEXICO,
113    CCODE_MONACO,
114    CCODE_MOROCCO,
115    CCODE_NETHERLANDS,
116    CCODE_NEW_ZEALAND,
117    CCODE_NORTH_KOREA,
118    CCODE_NORWAY,
119    CCODE_OMAN,
120    CCODE_PAKISTAN,
121    CCODE_PANAMA,
122    CCODE_PERU,
123    CCODE_PHILIPPINES,
124    CCODE_POLAND,
125    CCODE_PORTUGAL,
126    CCODE_PUERTO_RICO,
127    CCODE_QATAR,
128    CCODE_ROMANIA,
129    CCODE_RUSSIA,
130    CCODE_SAUDI_ARABIA,
131    CCODE_SINGAPORE,
132    CCODE_SLOVAKIA,
133    CCODE_SLOVENIA,
134    CCODE_SOUTH_AFRICA,
135    CCODE_SOUTH_KOREA,
136    CCODE_SPAIN,
137    CCODE_SWEDEN,
138    CCODE_SWITZERLAND,
139    CCODE_SYRIA,
140    CCODE_TAIWAN,
141    CCODE_THAILAND,
142    CCODE_TRINIDAD_TOBAGO,
143    CCODE_TUNISIA,
144    CCODE_TURKEY,
145    CCODE_UK,
146    CCODE_UKRAINE,
147    CCODE_UNITED_ARAB_EMIRATES,
148    CCODE_UNITED_STATES,
149    CCODE_URUGUAY,
150    CCODE_UZBEKISTAN,
151    CCODE_VENEZUELA,
152    CCODE_VIETNAM,
153    CCODE_YEMEN,
154    CCODE_ZIMBABWE,
155    CCODE_JAPAN_W52_W53,
156    CCODE_MAX
157} COUNTRY_CODE;
158
159
160/************************************************************************
161 * Function prototype
162 ************************************************************************/
163#endif  /* __COUNTRY_H__ */
164