summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authordreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2000-04-04 22:56:11 +0000
committerdreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2000-04-04 22:56:11 +0000
commit4440f5cd3e33f44bc44612a9e4e6bc94609d253e (patch)
tree4e910820a108816408ca59f9d55de111da66aa33 /dso
parentc2fbadd099b624e06145a420fd76be74bf643269 (diff)
downloadlibapr-4440f5cd3e33f44bc44612a9e4e6bc94609d253e.tar.gz
Add the other child stuff to beos, tidy up the test program a little and
get the dso code building again. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59790 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/beos/dso.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dso/beos/dso.c b/dso/beos/dso.c
index abeddfd83..ee65fabbb 100644
--- a/dso/beos/dso.c
+++ b/dso/beos/dso.c
@@ -59,8 +59,8 @@ ap_status_t ap_dso_init(void){
return APR_SUCCESS;
}
-ap_status_t ap_dso_load(const char *path, ap_context_t *ctx,
- ap_dso_handle_t **res_handle)
+ap_status_t ap_dso_load(ap_dso_handle_t **res_handle, const char *path,
+ ap_context_t *ctx)
{
image_id newid;
@@ -81,8 +81,8 @@ ap_status_t ap_dso_unload(ap_dso_handle_t *handle)
return APR_SUCCESS;
}
-ap_status_t ap_dso_sym(ap_dso_handle_t *handle, const char *symname,
- ap_dso_handle_sym_t *ressym)
+ap_status_t ap_dso_sym(ap_dso_handle_sym_t *ressym, ap_dso_handle_t *handle,
+ const char *symname)
{
int err;