home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / anwor032.zip / antiword.0.32 / version.h < prev    next >
Text File  |  2001-10-05  |  610b  |  30 lines

  1. /*
  2.  * version.h
  3.  * Copyright (C) 1998-2001 A.J. van Os; Released under GPL
  4.  *
  5.  * Description:
  6.  * Version and release information
  7.  */
  8.  
  9. #if !defined(__version_h)
  10. #define __version_h 1
  11.  
  12. /* Strings for the info box */
  13. #define PURPOSESTRING    "Display MS-Word files"
  14.  
  15. #if defined(__riscos)
  16. #define AUTHORSTRING    "⌐ 1998-2001 Adri van Os"
  17. #else
  18. #define AUTHORSTRING    "(C) 1998-2001 Adri van Os"
  19. #endif /* __riscos */
  20.  
  21. #define VERSIONSTRING    "0.32  (05 Oct 2001)"
  22.  
  23. #if defined(DEBUG)
  24. #define STATUSSTRING    "DEBUG version"
  25. #else
  26. #define STATUSSTRING    "GNU General Public License"
  27. #endif /* DEBUG */
  28.  
  29. #endif /* __version_h */
  30.