Works a bit more
[erwise] / Cl / WWWLibrary / HTBrowse.h
1 /*              Declarations of things available from HTBrowse.c
2 **              ------------------------------------------------
3 **
4 **      HTBrowse.c, the main program of a line mode browser,  leaves various
5 **      public variables atteh disposal of its submodules.
6 */
7
8 #ifndef HTBROWSE_H
9 #define HTBROWSE_H
10
11 #include "tcp.h"
12
13 #ifdef SHORT_NAMES
14 #define HTScreenHeight                  HTScHeig
15 #define HTScreenWidth                   HTScWidt
16 #define HTClientHost                    HTClHost
17 #define display_anchors                 HTDiAnch
18 #define interactive                     HTIntera
19 #define reference_mark                  HTReMark
20 #endif
21
22 extern  int  WWW_TraceFlag;             /* Off unless -v option given */
23 extern  int  HTScreenWidth;             /* By default */
24 extern  int  HTScreenHeight;            /* Undefined */
25 extern BOOL  display_anchors;           /* anchor will be shown in text? */
26 extern  BOOL interactive;               /*  e.g. shows prompts etc */
27
28                                            
29 extern FILE * logfile;                  /* File to output one-liners to */
30
31 extern char * HTClientHost;             /* Name or number of telnetting host */
32 extern char * reference_mark;           /* Format string for  [1] &c */
33 extern char * end_mark;                 /* Format string for  [End] */
34
35  
36 #endif /* HTBROWSE_H */