home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / Editors / mjovesrc.zoo / tune.c < prev    next >
C/C++ Source or Header  |  1992-04-04  |  1KB  |  31 lines

  1. /* Changes should be made in Makefile, not to this file! */
  2.  
  3. /***************************************************************************
  4.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  5.  * is provided to you without charge, and with no warranty.  You may give  *
  6.  * away copies of JOVE, including sources, provided that this notice is    *
  7.  * included in all the files.                                              *
  8.  ***************************************************************************/
  9.  
  10. #include "jove.h"
  11.  
  12. char    *d_tempfile = "joveXXXXXX",    /* buffer lines go here */
  13.     *p_tempfile = "jrecXXXXXX",    /* line pointers go here */
  14.     *Recover = "c://jove//lib/recover",
  15.     *CmdDb = "c://jove//lib/cmds.doc",
  16.         /* copy of "cmds.doc" lives in the doc subdirectory */
  17.  
  18.     *Joverc = "c://jove//lib/jove.rc",
  19.  
  20. #if defined(IPROCS) && defined(PIPEPROCS)
  21.     *Portsrv = "c://jove//lib/portsrv",
  22.     *Kbd_Proc = "c://jove//lib/kbd",
  23. #endif
  24.  
  25. /* these are variables that can be set with the set command, so they are
  26.    allocated more memory than they actually need for the defaults */
  27.  
  28.     TmpFilePath[FILESIZE] = "d://tmp",
  29.     Shell[FILESIZE] = "c://ash.ttp",
  30.     ShFlags[16] = "-c";
  31.