diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1999-02-08 10:50:02 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1999-02-08 10:50:02 -0500 |
commit | 8ce6b560f4fb325be3d34266c54c70eb8668e8e1 (patch) | |
tree | d227c501d100ee0c5f1c72601d9ea5a487c1e2ca /src/GridText.h | |
parent | 87434eaa074d789f65bac589b03df341e76e7a4e (diff) | |
download | lynx-snapshots-8ce6b560f4fb325be3d34266c54c70eb8668e8e1.tar.gz |
snapshot of project "lynx", label v2-8-2dev_16
Diffstat (limited to 'src/GridText.h')
-rw-r--r-- | src/GridText.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/GridText.h b/src/GridText.h index 30eb4376..006c577c 100644 --- a/src/GridText.h +++ b/src/GridText.h @@ -27,6 +27,13 @@ #define IsSpecialAttrChar(a) ((a > '\002') && (a <= '\010')) +#define TABSTOP 8 +#define SPACES " " /* must be at least TABSTOP spaces long */ +#define SPLAT '.' + +#define NOCHOP 0 +#define CHOP 1 + /* just for information: US-ASCII control characters <32 which are not defined in Unicode standard =00 U+0000 NULL @@ -125,6 +132,7 @@ extern CONST char * HText_getServer NOPARAMS; extern CONST char * HText_getOwner NOPARAMS; extern CONST char * HText_getContentBase NOPARAMS; extern CONST char * HText_getContentLocation NOPARAMS; +extern CONST char * HText_getMessageID NOPARAMS; extern CONST char * HText_getRevTitle NOPARAMS; #ifdef USE_HASH extern CONST char * HText_getStyle NOPARAMS; @@ -248,7 +256,7 @@ extern BOOL HText_AreDifferent PARAMS(( HTParentAnchor * anchor, CONST char * full_address)); -extern void HText_ExtEditForm PARAMS(( +extern int HText_ExtEditForm PARAMS(( struct link * form_link)); #endif /* LYGRIDTEXT_H */ |