summaryrefslogtreecommitdiff
path: root/sys/src/cmd/aux/antiword/version.h
blob: 01ed70979f728becf60b3a537e3e7480067413fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * version.h
 * Copyright (C) 1998-2005 A.J. van Os; Released under GNU GPL
 *
 * Description:
 * Version and release information
 */

#if !defined(__version_h)
#define __version_h 1

/* Strings for the info box */
#define PURPOSESTRING	"Display MS-Word files"

#if defined(__riscos)
#define AUTHORSTRING	"� 1998-2005 Adri van Os"
#else
#define AUTHORSTRING	"(C) 1998-2005 Adri van Os"
#endif /* __riscos */

#define VERSIONSTRING	"0.37  (21 Oct 2005)"

#if defined(__dos)
#if defined(__DJGPP__)
#define VERSIONSTRING2	" # 32-bit Protected Mode"
#else
#define VERSIONSTRING2	" # 16-bit Real Mode"
#endif /* __DJGPP__ */
#endif /* __dos */

#if defined(DEBUG)
#define STATUSSTRING	"DEBUG version"
#else
#define STATUSSTRING	"GNU General Public License"
#endif /* DEBUG */

#endif /* __version_h */