home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / WWW / LineMode / Implementation / HTBrowse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-11  |  963 b   |  36 lines

  1. /*                                 HTBrowse.h
  2. **
  3. **        Declarations of things available from HTBrowse.c
  4. **        ------------------------------------------------
  5. **
  6. **    HTBrowse.c, the main program of a line mode browser,  leaves various
  7. **    public variables atteh disposal of its submodules.
  8. **
  9. **     6 Oct 92    Nothing provided TO the W3 library (TBL)
  10. */
  11.  
  12. #ifndef HTBROWSE_H
  13. #define HTBROWSE_H
  14.  
  15. #include "tcp.h"
  16.  
  17. #ifdef SHORT_NAMES
  18. #define HTScreenHeight        HTScHeig
  19. #define HTScreenWidth        HTScWidt
  20. #define display_anchors        HTDiAnch
  21. #define interactive        HTIntera
  22. #define reference_mark        HTReMark
  23. #endif
  24.  
  25. /* extern  int  WWW_TraceFlag;          Off unless -v option given */
  26. extern  int  HTScreenWidth;        /* By default */
  27. extern  int  HTScreenHeight;        /* Undefined */
  28. extern  BOOL display_anchors;        /* anchor will be shown in text? */
  29.  
  30.                        
  31. extern char * reference_mark;          /* Format string for  [1] &c */
  32. extern char * end_mark;              /* Format string for  [End] */
  33.  
  34.  
  35. #endif /* HTBROWSE_H */
  36.