home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / txict100.zip / texicvt1.00 / source / version.h < prev   
C/C++ Source or Header  |  1997-03-31  |  3KB  |  95 lines

  1. #ifndef __VERSION_H
  2. #define __VERSION_H
  3.  
  4. /*
  5. ================================================================================
  6.                         Texinfo converting Tools
  7.                          Release 1.00 28.03.97
  8.                        (c) 1996 by Andreas Kaiser
  9.                     (c) 1997 by Karl Heinz Marbaise
  10. ================================================================================
  11.  
  12. Discription:
  13.     Hold information about global release to
  14.     put into converted files.
  15.  
  16. Authors:
  17.    Andreas Kaiser
  18.    Karl Heinz Marbaise
  19.  
  20. e-mail:
  21.    Internet: KHMarbaise@p69.ks.fido.de
  22.    Fido-net: 2:2452/117.69
  23.  
  24. Bugs, question:
  25.    to above e-mail adress.
  26.  
  27. Register:
  28.    Please send a e-mail to above adress to register.
  29.    (include the release you want to register)
  30.    This registration should be done to let me
  31.    know how many people using these tools and
  32.    if it is worth to invest more time in continuing
  33.    development these tools or let the first release
  34.    of them be the last.
  35.    That is the only reason to make a registration.
  36.    I think a e-mail is not to much, isn't it?
  37.  
  38. License:
  39.    The "Texinfo converting tools" are free software;
  40.    you can redistribute it and/or modify it under the terms of
  41.    the GNU General Public License as published by the Free
  42.    Software Foundation; either version 2, or (at your option)
  43.    any later version.
  44.  
  45.    The "Texinfo converting tools" are distributed in the hope that
  46.    they will be useful, but WITHOUT ANY WARRANTY; without even the
  47.    implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  48.    PURPOSE.  See the GNU General Public License for more details.
  49.  
  50.    You should have received a copy of the GNU General Public License
  51.    along with the "Texinfo converting tools" ; see the file COPYING.
  52.    If not, write to the:
  53.    Free Software Foundation,
  54.    59 Temple Place - Suite 330,
  55.    Boston, MA 02111-1307, USA.
  56.  
  57.    See \texicvt1.00\COPYING for details.
  58.  
  59. ================================================================================
  60. */
  61.  
  62. /*
  63. ------------------------------------------------------------------------------
  64.                       (R)evision (C)ontrol (S)ystem
  65. ------------------------------------------------------------------------------
  66. */
  67.  
  68. #ifdef __RCS__
  69. static const char *version_h = "$Id: VERSION.H 1.2 1997/03/22 18:19:44 KHM Exp $";
  70. #endif
  71.  
  72.  
  73. /*
  74. ------------------------------------------------------------------------------
  75.                              Includes
  76. ------------------------------------------------------------------------------
  77. */
  78. /*
  79. ------------------------------------------------------------------------------
  80.                              Defines
  81. ------------------------------------------------------------------------------
  82. */
  83. #define RELEASENAME "Texinfo converting Tools Release 1.00"
  84. #define COPYRIGHT "(c) by Andreas Kaiser 1996 (c) by Karl Heinz Marbaise 1997"
  85. /*
  86. ------------------------------------------------------------------------------
  87.                           Typ-Definitionen
  88. ------------------------------------------------------------------------------
  89. */
  90.  
  91. void PrintCopyright(void);
  92.  
  93. #endif /* __VERSION_H not defined */
  94.  
  95.