diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-05-28 03:02:43 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2000-05-28 03:02:43 +0000 |
commit | 5417dc6f09472d15a7dbcde40272e3276303ed0c (patch) | |
tree | d1a1fd0999913f39ebc522d6e4ad17dd4fe33783 /dso/win32 | |
parent | a8bc94b415eb6f43a0a501cb9e1a76a7ea323da6 (diff) | |
download | libapr-5417dc6f09472d15a7dbcde40272e3276303ed0c.tar.gz |
PR:
Obtained from:
Submitted by:
Reviewed by:
Close this symbol error on Win32.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/win32')
-rw-r--r-- | dso/win32/dso.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dso/win32/dso.c b/dso/win32/dso.c index b8dde20e4..a741276b3 100644 --- a/dso/win32/dso.c +++ b/dso/win32/dso.c @@ -93,3 +93,8 @@ ap_status_t ap_dso_sym(ap_dso_handle_sym_t *ressym, return APR_SUCCESS; } + +char *ap_dso_error(void) +{ + return "An error occured loading a DLL."; +} |