/* $Header: /bioy2/biocomputing/doelz/development/jam/RCS/jam.h,v 2.0 1995/07/23 08:56:53 doelz Exp doelz $ */
/* 
         ***********************************************************
         *                                                         *
         *                         J A M                           * 
         *        J u s t   A n o t h e r   M e t a f i l e        *
         *                                                         *
         ***********************************************************

        --- SEE MAIN PROGRAM (JAM.C) FOR COPYRIGHT AND DEFINITION ---
*/ 
#include <stdio.h>
#include <string.h>
#include <stdlib.h>  
#include <ctype.h>                 
                   
#ifndef TRUE
#define TRUE 1 
#define FALSE 0

#endif

#define MAXDEF 20 /* maximal definition width */
#define MAXFIL 64 /* maximal file path */
#define MAXLINE 256
#define MAXIF 20
#define MAXINC 20
#define MAXWIDTH 80 /* (output) */
#define MARGIN 20 /* margin */ 

#define STARTIFDEF 10
#define ELSEIFDEF 11
#define ENDIFDEF 12

#define COMMENT 15

#define INCLUDE 17


#define LATEX 2
#define RTF 1
#define HTML 3
#define PLAIN 4
#define RECEPTOR "biox.unibas.ch/searches/bin/select"
#define REFLECTOR "biox.unibas.ch/searches/bin/reflect"
#define JAMPATH ""
#define JAMDUMMY 2
#define JAMREFLECTOR 3
#define JAMRECEPTOR 1

#define HTMLLINKSTRING "Reference:"
#define LATEXLINKSTRING "Via network:"
#define RTFLINKSTRING "Try to access the network:"

#define LATEXEXTENSION "TEX"
#define HTMLEXTENSION "HTML"
#define RTFEXTENSION "RTF"

#define CHAPTER 20
#define SECTION 21
#define SUBSECTION 22

#define VERBATIM 30
#define SPECIAL 31
#define ITEM 32
#define ANITEM 33
#define REFERENCE 34
#define LINEFEED 35
#define PAGEFEED 36
#define EMPHASIS 37

/* link types */
 
#define NONE 0
#define ANCHOR 1
#define POINTER 2
#define INDEX 3
#define LINK 4


/* Duftmarke */
#define CODE_CRN "JAM v2.1 (C) BioComputing Basel 1994-5"










































