summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-03-20 04:25:15 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-03-20 04:25:15 +0000
commit5f02ce6f64e7e85f0dbb7464dc1164f4e2e09779 (patch)
treec3d3a64bbadba3a9c5e584d34a084d6f822a1907 /dso
parent74ab70ab9fd229c67b0cf3666aeb74ea37822ffa (diff)
downloadlibapr-5f02ce6f64e7e85f0dbb7464dc1164f4e2e09779.tar.gz
Win32 was missing the apr_os_dso_handle_get() accessor.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63162 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/win32/dso.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/dso/win32/dso.c b/dso/win32/dso.c
index ddb33b09c..98c18878a 100644
--- a/dso/win32/dso.c
+++ b/dso/win32/dso.c
@@ -70,6 +70,13 @@ APR_DECLARE(apr_status_t) apr_os_dso_handle_put(apr_dso_handle_t **aprdso,
return APR_SUCCESS;
}
+APR_DECLARE(apr_status_t) apr_os_dso_handle_get(apr_os_dso_handle_t *osdso,
+ apr_dso_handle_t *aprdso)
+{
+ *osdso = aprdso->handle;
+ return APR_SUCCESS;
+}
+
static apr_status_t dso_cleanup(void *thedso)
{
apr_dso_handle_t *dso = thedso;