Subversion Repositories Vertical

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * $Header: C:/cvsroot/Vert03/versionlib/version.c,v 1.2 2004/06/22 21:44:14 mjames Exp $
  3.  *
  4.  * $Log: version.c,v $
  5.  * Revision 1.2  2004/06/22 21:44:14  mjames
  6.  * Firrst build most files
  7.  *
  8.  * Revision 1.1.1.1  2003/11/04 23:34:56  mjames
  9.  * Imported into local repositrory
  10.  *
  11.  * Revision 1.7  2002/12/04 22:42:20  mjames
  12.  * Initial release Eagle PCB reader
  13.  *
  14.  * Revision 1.6  2002/08/23 14:03:16  mjames
  15.  * Version string split up so that require command is possible
  16.  *
  17.  * Revision 1.5  2002/01/03 16:36:10  mjames
  18.  * Method of accessing Vertical version changed to avoid
  19.  * global variable
  20.  *
  21.  * Revision 1.4  2001/10/31 22:20:19  mjames
  22.  * Tidying up problematical comments caused by CVS
  23.  * 'intelligent' comment guessing
  24.  *
  25.  * Revision 1.3  2001/09/16 19:54:27  mjames
  26.  * tidying
  27.  *
  28.  * Revision 1.2  2001/09/13 21:05:52  mjames
  29.  * Changed version code to reflect major differences in the features of the
  30.  * code
  31.  *
  32.  * Revision 1.1  2001/07/09 10:04:34  mjames
  33.  * Placed the version string in an independent file to save time on building
  34.  * all of the variants of Vertical
  35.  *
  36.  */
  37.  
  38. #include "version.h"
  39.  
  40. #include <stdio.h>
  41. #include <string.h>
  42. /* modifications to avoid global variables: using access functions instead */
  43. #define VERSION_NUMBER "17.0"
  44. #define VERSION_RELEASE " net rename"
  45.  
  46. char const Vertical_Version[] = VERSION_NUMBER;
  47. char const Vertical_Time[] = __DATE__ " at " __TIME__;
  48. char const Vertical_Release[] = VERSION_NUMBER VERSION_RELEASE;
  49.  
  50. void InitialiseVersionStrings (void)
  51. {
  52. }
  53.