/******************************************************************** * lindner * 3.4 * 1994/05/02 07:40:17 * /home/arcwelder/GopherSrc/CVS/gopher+/gopher/gopher.h,v * Exp * * Paul Lindner, University of Minnesota CIS. * * Copyright 1991, 1992 by the Regents of the University of Minnesota * see the file "Copyright" in the distribution for conditions of use. ********************************************************************* * MODULE: gopher.h * Header file for Gopher client. ********************************************************************* * Revision History: * gopher.h,v * Revision 3.4 1994/05/02 07:40:17 lindner * Mods to use setlocale() * * Revision 3.3 1994/04/25 03:37:40 lindner * Modifications for Debug() and mismatched NULL arguments, added Debugmsg * * Revision 3.2 1993/09/29 20:52:08 lindner * remove dead code * * Revision 3.1.1.1 1993/02/11 18:02:58 lindner * Gopher+1.2beta release * * Revision 2.1 1993/02/09 22:34:58 lindner * Stuff for RC * * Revision 1.2 1992/12/31 04:30:03 lindner * mods for VMS * * Revision 1.1 1992/12/10 23:32:16 lindner * gopher 1.1 release * *********************************************************************/ /*** All our mongo include files ***/ #include /*** Set global configuration options early ***/ #include "conf.h" #ifdef VMS #include #define MAXPATHLEN FILENAME_MAX #endif #include "Stdlib.h" #include #include #include "String.h" #include "Locale.h" #include #include #ifdef VMS /** VMS does't do slashes **/ #include #else /* not VMS */ #include #include #include #ifdef M_XENIX /* SCO Xenix/UNIX */ #define MAXPATHLEN FILENAME_MAX #include #include #include #else #include #endif #endif /* not VMS */ #define HALFLINE 40 #define MAXSTR 200 /* Arbitrary maximum string length */ /** Include definitions for our psuedo-objects. **/ #include "CURcurses.h" #include "boolean.h" #include "STRstring.h" #include "GDgopherdir.h" #include "compatible.h" #include "util.h" #include "gopherrc.h" /** Get the configuration variables **/ #include "globals.h" .