diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-11-06 16:18:09 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-11-06 16:18:09 -0500 |
commit | 18024037b515bfff83e0230b35151babe6005e18 (patch) | |
tree | b8c80055282a00883284722a3dd6bb25234e07f0 /src/HTForms.h | |
parent | 3d8ecbe48af249fa0d77ce4d273e32ce4b7e6e18 (diff) | |
download | lynx-snapshots-18024037b515bfff83e0230b35151babe6005e18.tar.gz |
snapshot of project "lynx", label v2-8-1dev_4
Diffstat (limited to 'src/HTForms.h')
-rw-r--r-- | src/HTForms.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/HTForms.h b/src/HTForms.h index eb0784f2..c01d3df1 100644 --- a/src/HTForms.h +++ b/src/HTForms.h @@ -7,7 +7,7 @@ #endif /* LYSTRUCTS_H */ /* in LYForms.c */ -extern int change_form_link PARAMS((struct link *form_link, +extern int change_form_link PARAMS((struct link *form_link, int mode, document *newdoc, BOOLEAN *refresh_screen, char *link_name, char *link_value)); @@ -59,7 +59,7 @@ typedef struct _FormInfo { char * value; /* user entered string data */ char * orig_value;/* the original value */ int size; /* width on the screen */ - unsigned maxlength; /* max width of data */ + int maxlength; /* max width of data */ int group; /* a group associated with the link * this is used for select's */ @@ -130,6 +130,9 @@ typedef struct _PerFormInfo #define NORMAL_LYNX_MODE 1 #define FORMS_LYNX_MODE 2 +#define FORM_UP 1 +#define FORM_DOWN 2 + #define FIRST_ORDER 1 #define MIDDLE_ORDER 2 #define LAST_ORDER 3 |