diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-28 17:26:53 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-28 17:26:53 -0400 |
commit | 0f298a5396cf95f4e58988583f862a4b97444bec (patch) | |
tree | cfce730aeca8d6832d9ec09d1e4d3450f85a444d /include/urweb.h | |
parent | 43bdca1c4bef142cde7080f317a4686b01721359 (diff) |
Subforms
Diffstat (limited to 'include/urweb.h')
-rw-r--r-- | include/urweb.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/urweb.h b/include/urweb.h index 51ab9149..c5381fa8 100644 --- a/include/urweb.h +++ b/include/urweb.h @@ -41,11 +41,13 @@ void uw_memstats(uw_context); int uw_send(uw_context, int sock); void uw_set_input(uw_context, const char *name, char *value); +void uw_set_file_input(uw_context, char *name, uw_Basis_file); + char *uw_get_input(uw_context, int name); char *uw_get_optional_input(uw_context, int name); - -void uw_set_file_input(uw_context, char *name, uw_Basis_file); uw_Basis_file uw_get_file_input(uw_context, int name); +void uw_enter_subform(uw_context, int name); +void uw_leave_subform(uw_context); void uw_write(uw_context, const char*); |