On Mon, 9 Apr 2001 [EMAIL PROTECTED] wrote: > > How is this different from apr_dso_unload?
apr_dso_unload() takes an apr_dso_handle_t argument, so i would have todo something ugly like: apr_dso_handle_t dso; dso.handle = (void*)handle_from_perl; dso.cont = p; apr_dso_unload(&dso); which i couldn't do if i wanted to, since apr_dso_handle_t is an incomplete type.
