version.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*====================================================================*
  2. *
  3. * version.h - package version definitions and declarations;
  4. *
  5. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  6. * Copyright 2001-2006 by Charles Maier Associates;
  7. * Licensed under the Internet Software Consortium License;
  8. *
  9. *--------------------------------------------------------------------*/
  10. #ifndef VERSION_HEADER
  11. #define VERSION_HEADER
  12. /*====================================================================*
  13. * constants;
  14. *--------------------------------------------------------------------*/
  15. #define COMPANY "Qualcomm Atheros, Santa Clara CA, USA"
  16. #define PACKAGE "Qualcomm Atheros Powerline Toolkit"
  17. #define PROJECT "plc-utils"
  18. #define VERSION "2.1.20"
  19. #define RELEASE "QCAOSR-6500"
  20. #define COMPILE __TIME__ " " __DATE__
  21. #define CONTACT "kalaivan@qti.qualcomm.com"
  22. #define LICENSE "QCA Proprietary License"
  23. /*====================================================================*
  24. * functions;
  25. *--------------------------------------------------------------------*/
  26. void version (void);
  27. /*====================================================================*
  28. *
  29. *--------------------------------------------------------------------*/
  30. #endif