00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
#ifndef APR_DSO_DOT_H
00017
#define APR_DSO_DOT_H
00018
00024
#include "apr.h"
00025
#include "apr_pools.h"
00026
#include "apr_errno.h"
00027
00028
#ifdef __cplusplus
00029
extern "C" {
00030
#endif
00031
00038
#if APR_HAS_DSO || defined(DOXYGEN)
00039
00043 typedef struct apr_dso_handle_t apr_dso_handle_t;
00044
00048 typedef void *
apr_dso_handle_sym_t;
00049
00058
APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
00059 const
char *path, apr_pool_t *ctx);
00060
00065 APR_DECLARE(apr_status_t) apr_dso_unload(apr_dso_handle_t *handle);
00066
00073 APR_DECLARE(apr_status_t) apr_dso_sym(apr_dso_handle_sym_t *ressym,
00074 apr_dso_handle_t *handle,
00075 const
char *symname);
00076
00083 APR_DECLARE(const
char *) apr_dso_error(apr_dso_handle_t *dso,
char *buf, apr_size_t bufsize);
00084
00085 #endif
00086
00089 #ifdef __cplusplus
00090 }
00091 #endif
00092
00093 #endif