Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8335 maxcodehac 1
 
2
   GNU UnRTF, a command-line program to convert RTF documents to other formats.
3
   Copyright (C) 2000,2001 Zachary Thayer Smith
4
5
 
6
   it under the terms of the GNU General Public License as published by
7
   the Free Software Foundation; either version 2 of the License, or
8
   (at your option) any later version.
9
10
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
   GNU General Public License for more details.
14
15
 
16
   along with this program; if not, write to the Free Software
17
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19
 
20
=============================================================================*/
21
22
 
23
 
24
 * Module name:    defs.h
25
 * Author name:    Zach Smith
26
 * Create date:    1 Sept 2000
27
 * Purpose:        Basic definitions plus externs for UnRTF
28
 *----------------------------------------------------------------------
29
 * Changes:
30
 * 21 Oct 00, tuorfa@yahoo.com: moved program version to this file
31
 * 08 Apr 01, tuorfa@yahoo.com: updated usage info.
32
 * 08 Sep 01, tuorfa@yahoo.com: added PROGRAM_NAME.
33
 * 19 Sep 01, tuorfa@yahoo.com: added PROGRAM_WEBSITE.
34
 *--------------------------------------------------------------------*/
35
36
 
37
 
38
#define PROGRAM_NAME "UnRTF"
39
#define PROGRAM_WEBSITE "http://www.geocities.com/tuorfa"
40
41
 
42
 
43
#define ENGLISH
44
#if 0
45
#define FRANCAIS
46
#define ITALIANO
47
#endif
48
49
 
50
 
51
#define FALSE (0)
52
53
 
54
 
55
56
 
57
 
58
#define FONTNIL_STR	"Times,TimesRoman,TimesNewRoman"
59
#define FONTROMAN_STR	"Times,Palatino"
60
#define FONTSWISS_STR	"Helvetica,Arial"
61
#define FONTMODERN_STR	"Courier,Verdana"
62
#define FONTSCRIPT_STR	"Cursive,ZapfChancery"
63
#define FONTDECOR_STR	"ZapfChancery"
64
#define FONTTECH_STR	"Symbol"
65