From 6c4ac7bdbbd995f2636ea198d60b65e191a61c95 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Thu, 18 Jan 2001 14:17:17 +0000 Subject: Missing a few @deffunc's git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61069 13f79535-47bb-0310-9956-ffa450edef68 --- include/apr_dso.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include/apr_dso.h') diff --git a/include/apr_dso.h b/include/apr_dso.h index 3eed74422..9c74b6e9f 100644 --- a/include/apr_dso.h +++ b/include/apr_dso.h @@ -85,7 +85,8 @@ typedef void * apr_dso_handle_sym_t; * Load a DSO library. * @param res_handle Location to store new handle for the DSO. * @param path Path to the DSO library - * @param ctx Pool to use. + * @param ctx Pool to use. + * @deffunc apr_status_t apr_dso_load(apr_dso_handle_t **res_handle, const char *path, apr_pool_t *ctx) */ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle, const char *path, apr_pool_t *ctx); @@ -93,6 +94,7 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle, /** * Close a DSO library. * @param handle handle to close. + * @deffunc apr_status_t apr_dso_unload(apr_dso_handle_t *handle) */ APR_DECLARE(apr_status_t) apr_dso_unload(apr_dso_handle_t *handle); @@ -101,6 +103,7 @@ APR_DECLARE(apr_status_t) apr_dso_unload(apr_dso_handle_t *handle); * @param ressym Location to store the loaded symbol * @param handle handle to load the symbol from. * @param symname Name of the symbol to load. + * @deffunc apr_status_t apr_dso_sym(apr_dso_handle_sym_t *ressym, apr_dso_handle_t *handle, const char *symname) */ APR_DECLARE(apr_status_t) apr_dso_sym(apr_dso_handle_sym_t *ressym, apr_dso_handle_t *handle, -- cgit v1.2.1