home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / src / linux-headers-2.6.17-6 / include / wlan / version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-08-11  |  2.4 KB  |  64 lines

  1. /* src/include/wlan/version.h
  2. *
  3. *
  4. * Copyright (C) 1999 AbsoluteValue Systems, Inc.  All Rights Reserved.
  5. * --------------------------------------------------------------------
  6. *
  7. * linux-wlan
  8. *
  9. *   The contents of this file are subject to the Mozilla Public
  10. *   License Version 1.1 (the "License"); you may not use this file
  11. *   except in compliance with the License. You may obtain a copy of
  12. *   the License at http://www.mozilla.org/MPL/
  13. *
  14. *   Software distributed under the License is distributed on an "AS
  15. *   IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  16. *   implied. See the License for the specific language governing
  17. *   rights and limitations under the License.
  18. *
  19. *   Alternatively, the contents of this file may be used under the
  20. *   terms of the GNU Public License version 2 (the "GPL"), in which
  21. *   case the provisions of the GPL are applicable instead of the
  22. *   above.  If you wish to allow the use of your version of this file
  23. *   only under the terms of the GPL and not to allow others to use
  24. *   your version of this file under the MPL, indicate your decision
  25. *   by deleting the provisions above and replace them with the notice
  26. *   and other provisions required by the GPL.  If you do not delete
  27. *   the provisions above, a recipient may use your version of this
  28. *   file under either the MPL or the GPL.
  29. *
  30. * --------------------------------------------------------------------
  31. *
  32. * Inquiries regarding the linux-wlan Open Source project can be
  33. * made directly to:
  34. *
  35. * AbsoluteValue Systems Inc.
  36. * info@linux-wlan.com
  37. * http://www.linux-wlan.com
  38. *
  39. * --------------------------------------------------------------------
  40. *
  41. * Portions of the development of this software were funded by 
  42. * Intersil Corporation as part of PRISM(R) chipset product development.
  43. *
  44. * --------------------------------------------------------------------
  45. */
  46. #ifndef _WLAN_VERSION_H
  47. #define _WLAN_VERSION_H
  48. #ifndef KERNEL_VERSION
  49. #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
  50. #endif
  51.  
  52. /* WLAN_HOSTIF (generally set on the command line, not detected) */
  53. #define WLAN_PCMCIA                     1
  54. #define WLAN_ISA                        2
  55. #define WLAN_PCI                        3
  56. #define WLAN_USB                        4
  57. #define WLAN_PLX                        5
  58. #define WLAN_SLAVE                      6
  59. #define WLAN_RELEASE    "0.2.2"
  60. #define WLAN_RELEASE_CODE 0x000202
  61. #define WLAN_BUILD_DATE "Wed Oct 19 14:02:55 EDT 2005" 
  62.  
  63. #endif
  64.