home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lynx2.8.1dev.10.tar.gz / lynx2.8.1dev.10.tar / lynx2-8 / src / LYStyle.h < prev    next >
C/C++ Source or Header  |  1998-03-25  |  681b  |  33 lines

  1. #ifndef LYSTYLE_H
  2. #define LYSTYLE_H
  3.  
  4. #ifdef USE_COLOR_STYLE
  5.  
  6. #include <AttrList.h>
  7.  
  8. /* list of elements */
  9. extern CONST SGML_dtd HTML_dtd;
  10.  
  11. /* array of currently set styles */
  12. extern HTCharStyle displayStyles[DSTYLE_ELEMENTS];
  13.  
  14. /* Can we do colour? - RP */
  15. extern int lynx_has_color;
  16.  
  17. /* Set all the buckets in the hash table to be empty */
  18. extern void style_initialiseHashTable NOPARAMS;
  19.  
  20. extern void parse_userstyles NOPARAMS;
  21.  
  22. extern void HStyle_addStyle PARAMS((char* buffer));
  23.  
  24. extern void style_deleteStyleList NOPARAMS;
  25.  
  26. extern void style_defaultStyleSheet NOPARAMS;
  27.  
  28. extern int style_readFromFile PARAMS((char* file));
  29.  
  30. #endif /* USE_COLOR_STYLE */
  31.  
  32. #endif /* LYSTYLE_H */
  33.