home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / jove414s.zip / tune.c < prev    next >
C/C++ Source or Header  |  1989-11-14  |  868b  |  23 lines

  1. /***************************************************************************
  2.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  3.  * is provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is    *
  5.  * included in all the files.                                              *
  6.  ***************************************************************************/
  7.  
  8. #define NOEXTERNS
  9.  
  10. #include "tune.h"
  11.  
  12. /* these are variables that can be set with the set command, so they are
  13.    allocated more memory than they actually need for the defaults */
  14. char    TmpFilePath[64] = ".",
  15.     Shell[64] = "command",
  16.     ShFlags[16] = "-c",
  17.     CmdDb[64] = "c:/unix/cmds.doc";
  18.  
  19. /* these guys are not settable */
  20. char    *d_tempfile = "joveXXXXXX",    /* buffer lines go here */
  21.     *Joverc = "jove.rc";
  22.  
  23.