summaryrefslogtreecommitdiff
path: root/include/apr_dso.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-01-18 14:17:17 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-01-18 14:17:17 +0000
commit6c4ac7bdbbd995f2636ea198d60b65e191a61c95 (patch)
tree5233bfefbb7dbd91134cffaee9a70c2c9c192079 /include/apr_dso.h
parentfe8b554553f271ae4d2393a97480ba9298054f04 (diff)
downloadapr-6c4ac7bdbbd995f2636ea198d60b65e191a61c95.tar.gz
Missing a few @deffunc's
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61069 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_dso.h')
-rw-r--r--include/apr_dso.h5
1 files changed, 4 insertions, 1 deletions
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,