Mercurial > urweb
comparison include/urweb.h @ 1121:0cee0c8d8c37
Support for protocol-specific expunger dispatch
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Sun, 10 Jan 2010 10:40:57 -0500 |
parents | 74f2eb3b0606 |
children | e1cf925e2074 |
comparison
equal
deleted
inserted
replaced
1120:74f2eb3b0606 | 1121:0cee0c8d8c37 |
---|---|
21 failure_kind uw_initialize(uw_context); | 21 failure_kind uw_initialize(uw_context); |
22 | 22 |
23 uw_context uw_init(void); | 23 uw_context uw_init(void); |
24 void uw_close(uw_context); | 24 void uw_close(uw_context); |
25 int uw_set_app(uw_context, uw_app*); | 25 int uw_set_app(uw_context, uw_app*); |
26 uw_app *uw_get_app(uw_context); | |
26 void uw_set_db(uw_context, void*); | 27 void uw_set_db(uw_context, void*); |
27 void *uw_get_db(uw_context); | 28 void *uw_get_db(uw_context); |
28 void uw_free(uw_context); | 29 void uw_free(uw_context); |
29 void uw_reset(uw_context); | 30 void uw_reset(uw_context); |
30 void uw_reset_keep_request(uw_context); | 31 void uw_reset_keep_request(uw_context); |
270 void uw_set_deadline(uw_context, int); | 271 void uw_set_deadline(uw_context, int); |
271 void uw_check_deadline(uw_context); | 272 void uw_check_deadline(uw_context); |
272 | 273 |
273 uw_Basis_unit uw_Basis_debug(uw_context, uw_Basis_string); | 274 uw_Basis_unit uw_Basis_debug(uw_context, uw_Basis_string); |
274 | 275 |
276 void uw_set_client_data(uw_context, void *); | |
277 | |
275 #endif | 278 #endif |