diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1997-05-25 00:16:10 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1997-05-25 00:16:10 -0400 |
commit | 945e8eb6bb07f64aaca42207af3311220ff2e4ba (patch) | |
tree | 6afb50262b844dd069bd4f7234da68008c48677c /src/LYStyle.h | |
parent | e4409c408eedf320b8845cafdd62b664bec1afd8 (diff) | |
download | lynx-snapshots-945e8eb6bb07f64aaca42207af3311220ff2e4ba.tar.gz |
snapshot of project "lynx", label v2-7-1ac_0-28
Diffstat (limited to 'src/LYStyle.h')
-rw-r--r-- | src/LYStyle.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/LYStyle.h b/src/LYStyle.h new file mode 100644 index 00000000..cfc4ae69 --- /dev/null +++ b/src/LYStyle.h @@ -0,0 +1,32 @@ +#ifndef LYSTYLE_H +#define LYSTYLE_H + +#ifdef USE_COLOR_STYLE + +#include "AttrList.h" + +/* list of elements */ +extern CONST SGML_dtd HTML_dtd; + +/* array of currently set styles */ +extern HTCharStyle displayStyles[DSTYLE_ELEMENTS]; + +/* Can we do colour? - RP */ +extern int has_color; + +/* Set all the buckets in the hash table to be empty */ +extern void style_initialiseHashTable NOPARAMS; + +extern void parse_userstyles NOPARAMS; + +extern void HStyle_addStyle PARAMS((char* buffer)); + +extern void style_deleteStyleList NOPARAMS; + +extern void style_defaultStyleSheet NOPARAMS; + +extern int style_readFromFile PARAMS((char* file)); + +#endif /* USE_COLOR_STYLE */ + +#endif /* LYSTYLE_H */ |