diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1997-09-19 01:14:00 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1997-09-19 01:14:00 -0400 |
commit | 443226a5ffcf805f6ab3ccbcc2a6b4802793b07d (patch) | |
tree | b6f0dca30c155e9ea2fa8ec78271fb44744b05ce /src/HTForms.h | |
parent | d2e46bbfcbedb43938b866f4ad9e8bf1d4084b7c (diff) | |
download | lynx-snapshots-443226a5ffcf805f6ab3ccbcc2a6b4802793b07d.tar.gz |
snapshot of project "lynx", label v2-7-1ac_0-69
Diffstat (limited to 'src/HTForms.h')
-rw-r--r-- | src/HTForms.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/HTForms.h b/src/HTForms.h index c152f0a9..9f2503b0 100644 --- a/src/HTForms.h +++ b/src/HTForms.h @@ -15,25 +15,25 @@ extern int change_form_link PARAMS((struct link *form_link, int mode, * HTML.c and Gridtext.c in HText_beginInput() */ typedef struct _InputFieldData { - char *accept; - char *align; + CONST char *accept; + CONST char *align; int checked; - char *class; + CONST char *class; int disabled; - char *error; - char *height; - char *id; - char *lang; - char *max; - char *maxlength; - char *md; - char *min; - char *name; - char *size; - char *src; - char *type; + CONST char *error; + CONST char *height; + CONST char *id; + CONST char *lang; + CONST char *max; + CONST char *maxlength; + CONST char *md; + CONST char *min; + CONST char *name; + CONST char *size; + CONST char *src; + CONST char *type; char *value; - char *width; + CONST char *width; } InputFieldData; /* The OptionType structure is for a linked list of option entries |