Mercurial > urweb
comparison include/urweb.h @ 854:158d980889ac
Further refactoring of request.c to work with CGI
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Tue, 23 Jun 2009 15:40:35 -0400 |
parents | 249740301a0a |
children | 86ec89baee01 |
comparison
equal
deleted
inserted
replaced
853:19fdeef40ada | 854:158d980889ac |
---|---|
22 void uw_reset(uw_context); | 22 void uw_reset(uw_context); |
23 void uw_reset_keep_request(uw_context); | 23 void uw_reset_keep_request(uw_context); |
24 void uw_reset_keep_error_message(uw_context); | 24 void uw_reset_keep_error_message(uw_context); |
25 | 25 |
26 failure_kind uw_begin_init(uw_context); | 26 failure_kind uw_begin_init(uw_context); |
27 void uw_set_headers(uw_context, char *headers); | 27 void uw_set_headers(uw_context, char *(*get_header)(void *, const char *), void *get_header_data); |
28 void uw_headers_moved(uw_context ctx, char *headers); | |
29 failure_kind uw_begin(uw_context, char *path); | 28 failure_kind uw_begin(uw_context, char *path); |
30 void uw_login(uw_context); | 29 void uw_login(uw_context); |
31 void uw_commit(uw_context); | 30 void uw_commit(uw_context); |
32 int uw_rollback(uw_context); | 31 int uw_rollback(uw_context); |
33 | 32 |