Mercurial > urweb
diff 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 |
line wrap: on
line diff
--- a/include/urweb.h Thu Jan 07 14:02:58 2010 -0500 +++ b/include/urweb.h Sun Jan 10 10:40:57 2010 -0500 @@ -23,6 +23,7 @@ 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 @@ uw_Basis_unit uw_Basis_debug(uw_context, uw_Basis_string); +void uw_set_client_data(uw_context, void *); + #endif