summaryrefslogtreecommitdiff
path: root/include/apr_dso.h
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-08-12 05:50:46 +0000
committerRyan Bloom <rbb@apache.org>2001-08-12 05:50:46 +0000
commit9be2c106b61835000934a83e916d851cc21879fa (patch)
treeb12aeb6f410c3345f4e131af02212cf5ccd50859 /include/apr_dso.h
parent27a7e3be3fc91212f1d70e73fae5f7c85b7f1b54 (diff)
downloadapr-9be2c106b61835000934a83e916d851cc21879fa.tar.gz
Add the rest of the doxygen changes for APR.
Submitted by: Ian Holsman <ianh@cnet.com> git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62147 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_dso.h')
-rw-r--r--include/apr_dso.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/include/apr_dso.h b/include/apr_dso.h
index b34054c8d..01c0fc30d 100644
--- a/include/apr_dso.h
+++ b/include/apr_dso.h
@@ -58,16 +58,23 @@
#include "apr.h"
#include "apr_pools.h"
#include "apr_errno.h"
+/**
+ * @file apr_dso.h
+ * @brief APR Dynamic Object Handling Routines
+ */
+
/**
- * @package Dynamic Object Handling
+ * @defgroup APR_DSO Dynamic Object Handling
+ * @ingroup APR
+ * @{
*/
#ifdef __cplusplus
extern "C" {
#endif
-#if APR_HAS_DSO
+#if APR_HAS_DSO || defined(DOXYGEN)
/**
* Structure for referencing dynamic objects
@@ -86,7 +93,6 @@ typedef void * apr_dso_handle_sym_t;
* @param res_handle Location to store new handle for the DSO.
* @param path Path to the DSO library
* @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);
@@ -94,7 +100,6 @@ 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);
@@ -103,7 +108,6 @@ 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,
@@ -114,7 +118,6 @@ APR_DECLARE(apr_status_t) apr_dso_sym(apr_dso_handle_sym_t *ressym,
* @param dso The dso handle that has been opened
* @param buf Location to store the dso error
* @param bufsize The size of the provided buffer
- * @deffunc const char *apr_dso_error(apr_dso_handle_t *dso, char *buf, apr_size_t bufsize)
*/
APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buf, apr_size_t bufsize);
@@ -123,5 +126,5 @@ APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buf, apr_si
#ifdef __cplusplus
}
#endif
-
+/** @} */
#endif