home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / harbb30g.zip / INCLUDE / hbver.h < prev    next >
C/C++ Source or Header  |  1999-09-29  |  4KB  |  94 lines

  1. /*
  2.  * $Id: hbver.h,v 1.7 1999/09/29 15:04:27 vszel Exp $
  3.  */
  4.  
  5. /*
  6.  * Harbour Project source code:
  7.  * Header file for version information
  8.  *
  9.  * Copyright 1999 David G. Holm <dholm@jsd-llc.com>
  10.  * www - http://www.harbour-project.org
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version, with one exception:
  16.  *
  17.  * The exception is that if you link the Harbour Runtime Library (HRL)
  18.  * and/or the Harbour Virtual Machine (HVM) with other files to produce
  19.  * an executable, this does not by itself cause the resulting executable
  20.  * to be covered by the GNU General Public License. Your use of that
  21.  * executable is in no way restricted on account of linking the HRL
  22.  * and/or HVM code into it.
  23.  *
  24.  * This program is distributed in the hope that it will be useful,
  25.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  * GNU General Public License for more details.
  28.  *
  29.  * You should have received a copy of the GNU General Public License
  30.  * along with this program; if not, write to the Free Software
  31.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
  32.  * their web site at http://www.gnu.org/).
  33.  *
  34.  */
  35.  
  36. /*
  37.  * ChangeLog:
  38.  *
  39.  * V 1.5    David G. Holm               Bumped revision code to "b" and
  40.  *                                      changed date for public release.
  41.  * V 1.4    David G. Holm               Bumped revision code to "a" and
  42.  *                                      set date for public OS/2 build.
  43.  * V 1.3    ?
  44.  * V 1.2    ?
  45.  * V 1.1    ?                           Renamed to hbver.h
  46.  * V 1.11   Patrick Mast                Bumped build to 29 and updated date
  47.  *                                      for new public release.
  48.  * V 1.12   David G. Holm               Bumped build to 29, reset revision
  49.  *                                      code to an empty string, and updated
  50.  *                                      date, anticipating a public release.
  51.  * V 1.11   Patrick Mast                Bumped build to 28 and updated date
  52.  *                                      for new public release.
  53.  * V 1.10   David G. Holm               Added my email address.
  54.  * V 1.9    David G. Holm               Added Copyright and License notice.
  55.  *                                      Added version history.
  56.  *                                      Bumped revision code to "d" and
  57.  *                                      updated date.
  58.  * V 1.8    Victor Szel                 Change not documented.
  59.  * V 1.7    David G. Holm               Bumped revision code to "c".
  60.  * V 1.6    Patrick Mast                Bumped build to 27 and updated date
  61.  *                                      for new public release.
  62.  * V 1.5    Gonzalo A. Diethelm         Added RCS Id keyword.
  63.  * V 1.4    David G. Holm               Bumped revision code to "b".
  64.  * V 1.3    Patrick Mast                Bumped build to 26 and updated date
  65.  *                                      for new public release.
  66.  * V 1.2    Patrick Mast                Change not documented.
  67.  * V 1.1    David G. Holm               Committed to CVS.
  68.  * V 1.0    David G. Holm               Original version.
  69.  *
  70.  */
  71.  
  72. #ifndef HB_VER_H_
  73. #define HB_VER_H_
  74.  
  75. /*
  76. extern int    hb_major;
  77. extern int    hb_minor;
  78. extern char * hb_revision;
  79. extern int    hb_build;
  80. extern int    hb_year;
  81. extern int    hb_month;
  82. extern int    hb_day;
  83. */
  84.  
  85. #define hb_major     0       /* Major version number */
  86. #define hb_minor     0       /* Minor version number */
  87. #define hb_revision  ""      /* Revision letter */
  88. #define hb_build     30      /* Build number */
  89. #define hb_year      1999    /* Build year */
  90. #define hb_month     9       /* Build month */
  91. #define hb_day       30      /* Build day */
  92.  
  93. #endif /* HB_VER_H_ */
  94.