You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2002/03/20 05:25:16 UTC

cvs commit: apr/dso/win32 dso.c

wrowe       02/03/19 20:25:15

  Modified:    dso/win32 dso.c
  Log:
    Win32 was missing the apr_os_dso_handle_get() accessor.
  
  Revision  Changes    Path
  1.30      +7 -0      apr/dso/win32/dso.c
  
  Index: dso.c
  ===================================================================
  RCS file: /home/cvs/apr/dso/win32/dso.c,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- dso.c	13 Mar 2002 20:39:09 -0000	1.29
  +++ dso.c	20 Mar 2002 04:25:15 -0000	1.30
  @@ -70,6 +70,13 @@
       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;