12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*====================================================================*
- *
- * version.h - package version definitions and declarations;
- *
- * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
- * Copyright 2001-2006 by Charles Maier Associates;
- * Licensed under the Internet Software Consortium License;
- *
- *--------------------------------------------------------------------*/
- #ifndef VERSION_HEADER
- #define VERSION_HEADER
- /*====================================================================*
- * constants;
- *--------------------------------------------------------------------*/
- #define COMPANY "Qualcomm Atheros, Santa Clara CA, USA"
- #define PACKAGE "Qualcomm Atheros Powerline Toolkit"
- #define PROJECT "plc-utils"
- #define VERSION "2.1.20"
- #define RELEASE "QCAOSR-6500"
- #define COMPILE __TIME__ " " __DATE__
- #define CONTACT "kalaivan@qti.qualcomm.com"
- #define LICENSE "QCA Proprietary License"
- /*====================================================================*
- * functions;
- *--------------------------------------------------------------------*/
- void version (void);
- /*====================================================================*
- *
- *--------------------------------------------------------------------*/
- #endif
|