/* number of bytes to use for the information bufer
   MAXBUFFERSPACE defines the number of characters stored for the bottom display
   MAXDIMINISHBY is the number of characters to delete from the tail
       it must be smaller than MAXBUFFERSPACE... i reccomend about a fifth
*/
#define MAXBUFFERSPACE 5000
#define DIMINISHBUFFERBY 1000

/* MAGICFILE is the place where xcp's magic file is stored
   COMMAND_FILE is the list of commands to execute based on the magic file
   DEFAULT_FILE is the place where the default everything else is
*/
#define MAGICFILE "/afs/sipb/user/yoav/Xcp-admin/magic_file"
#define COMMANDFILE "/afs/sipb/user/yoav/Xcp-admin/command_file"
#define DEFAULT_FILE "/afs/sipb/user/yoav/Xcp-admin/.xcprc"

/* do not edit these unless you edit the magicfile and the resulting commands
*/
#define MAXTYPELEN 50
#define MAXCOMMANDLEN 200

/* MAXMAGICLENGTH is the length of one line in the magic file  */
#define MAXMAGICLENGTH 1000
#define MAXMAGICTYPE 20  /* short, long, striung.. etc...  */
#define MAXMAGICDESC 100  /* 0xFA, foobar, etc...  */
#define MAXMAGICRESULT 100  /* GIF, SND, etc...   */

/* COMMANDFILE are constants about the file holding the commands  */
#define MAXCOMMANDFILELEN 1000
#define MAXCOMMAND MAXCOMMANDFILELEN-MAXMAGICRESULT

/* DTRT_NAME is the filename of the dtrt program  */
#define DTRT_NAME "/afs/sipb/user/yoav/arch/@sys/bin/dtrt"
