/* gopher.h * * Part of the Internet Gopher program, copyright (C) 1991 * University of Minnesota Microcomputer Workstation and Networks Center * */ /*** All our mongo include files ***/ #include #include "sys$share:smg$routines.h" #include "sys$share:smgdef.h" #include "sys$share:smgtrmptr.h" #include #include #include #if __GNUC__ #include #include #else #include #include #include #endif /*** Set global configuration options early ***/ #include "conf.h" #ifndef IS_BSD #ifndef IS_NEXT #include #endif #endif #if __GNUC__ #include #include #include #else #include #include #include #endif #if UCX #include #endif #include #include #include #include #include #define HALFLINE 40 #define WHOLELINE 80 #define MAXSTR 200 /* Arbitrary maximum string length */ /* WEIRD BUG!!!! A value greater than 200 doesn't work on Sparcs! Why???? */ #define A_FILE '0' /* Types of objects returned from a server */ #define A_DIRECTORY '1' #define A_CSO '2' #define A_ERROR '3' #define A_INDEX '7' #define A_TELNET '8' #define A_CNS '9' #define A_SOUND 's' #define A_EVENT 'e' #define A_CALENDAR 'c' #define A_EOI '.' #include "gopherstruct.h" #include "stack.h" /** Get the configuration variables **/ #include "globals.h" /** Load in the header files for the various structures **/ #include "forms.h" .