1 /* 2 * version.h 3 * Copyright (C) 1998-2005 A.J. van Os; Released under GNU 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-2005 Adri van Os" 17 #else 18 #define AUTHORSTRING "(C) 1998-2005 Adri van Os" 19 #endif /* __riscos */ 20 21 #define VERSIONSTRING "0.37 (21 Oct 2005)" 22 23 #if defined(__dos) 24 #if defined(__DJGPP__) 25 #define VERSIONSTRING2 " # 32-bit Protected Mode" 26 #else 27 #define VERSIONSTRING2 " # 16-bit Real Mode" 28 #endif /* __DJGPP__ */ 29 #endif /* __dos */ 30 31 #if defined(DEBUG) 32 #define STATUSSTRING "DEBUG version" 33 #else 34 #define STATUSSTRING "GNU General Public License" 35 #endif /* DEBUG */ 36 37 #endif /* __version_h */ 38