country.h 3.7 KB

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