diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-01-10 10:40:57 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-01-10 10:40:57 -0500 |
commit | b9fd5b30dab83e12206e4b260e1ea775da7cedde (patch) | |
tree | d909370696f5b261372fb59f1a17589605ceb6b7 /include/urweb.h | |
parent | 197d67717d69dcacf68fda05c8bdd19591c51b88 (diff) |
Support for protocol-specific expunger dispatch
Diffstat (limited to 'include/urweb.h')
-rw-r--r-- | include/urweb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/urweb.h b/include/urweb.h index f9e06cb1..84da7694 100644 --- a/include/urweb.h +++ b/include/urweb.h @@ -23,6 +23,7 @@ failure_kind uw_initialize(uw_context); uw_context uw_init(void); void uw_close(uw_context); int uw_set_app(uw_context, uw_app*); +uw_app *uw_get_app(uw_context); void uw_set_db(uw_context, void*); void *uw_get_db(uw_context); void uw_free(uw_context); @@ -272,4 +273,6 @@ void uw_check_deadline(uw_context); uw_Basis_unit uw_Basis_debug(uw_context, uw_Basis_string); +void uw_set_client_data(uw_context, void *); + #endif |