home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
editor
/
j414src.arc
/
TUNE.H
< prev
next >
Wrap
C/C++ Source or Header
|
1989-10-10
|
2KB
|
77 lines
/***************************************************************************
* This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne. JOVE *
* is provided to you without charge, and with no warranty. You may give *
* away copies of JOVE, including sources, provided that this notice is *
* included in all the files. *
***************************************************************************/
#define TUNED /* don't touch this */
#include "sysdep.h"
#ifdef UNIX
# define SUBPROCS /* only on UNIX systems (NOT INCORPORATED YET) */
# define IPROCS /* interactive processes */
#endif /* UNIX */
#define BACKUPFILES /* enable the backup files code */
#define F_COMPLETION /* filename completion */
#define ABBREV /* word abbreviation mode */
#if !(defined(IBMPC) || defined(MAC))
# define ID_CHAR /* include code to IDchar */
# define WIRED_TERMS /* include code for wired terminals */
#endif
#define LISP /* include the code for Lisp Mode */
#define CMT_FMT /* include the comment formatting routines */
#ifdef UNIX
# define LOAD_AV /* Use the load average for various commands.
# Do not define this if you lack a load average
# system call and kmem is read protected. */
#
# define BIFF /* if you have biff (or the equivalent) */
# define SPELL /* spell words and buffer commands */
#endif
#define DFLT_MODE 0666 /* file will be created with this mode */
#ifdef MAC
# undef F_COMPLETION
# define F_COMPLETION 1
# define byte_zero(s,n) setmem((s),(n),0)
# define swritef sprintf
# define USE_PROTOTYPES 1
# define NBUF 64
# define JBUFSIZ 1024
# undef LISP
# define LISP 1
# undef ABBREV
# define ABBREV 1
# undef CMT_FMT
# define CMT_FMT 1
#endif
/* These are here since they define things in tune.c. If you add things to
tune.c, add them here too, if necessary. */
extern char
*d_tempfile,
*p_tempfile,
*Recover,
*Joverc,
#if defined(IPROCS) && defined(PIPEPROCS)
*Portsrv,
*Kbd_Proc,
#endif
#ifdef MSDOS
CmdDb[],
#else
*CmdDb,
#endif
TmpFilePath[],
Shell[],
ShFlags[];