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 2001/07/26 17:39:25 UTC

cvs commit: apr/include apr_network_io.h apr_file_io.h

wrowe       01/07/26 08:39:25

  Modified:    include  apr_network_io.h apr_file_io.h
  Log:
    Solve the make exports problems with these accessor wrappers by simply
    replacing with the proper declarations.  [Brian Havard]
  
  Revision  Changes    Path
  1.107     +2 -2      apr/include/apr_network_io.h
  
  Index: apr_network_io.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_network_io.h,v
  retrieving revision 1.106
  retrieving revision 1.107
  diff -u -r1.106 -r1.107
  --- apr_network_io.h	2001/07/25 18:00:57	1.106
  +++ apr_network_io.h	2001/07/26 15:39:25	1.107
  @@ -807,14 +807,14 @@
    * @param socket The socket to enable inheritance.
    * @deffunc void apr_socket_set_inherit(apr_socket_t *socket)
    */
  -APR_DECLARE_SET_INHERIT(socket);
  +APR_DECLARE(void) apr_socket_set_inherit(apr_socket_t *socket);
   
   /**
    * Unset a socket from being inherited by child processes.
    * @param socket The socket to disable inheritance.
    * @deffunc void apr_socket_unset_inherit(apr_socket_t *socket)
    */
  -APR_DECLARE_UNSET_INHERIT(socket);
  +APR_DECLARE(void) apr_socket_unset_inherit(apr_socket_t *socket);
   
   #ifdef __cplusplus
   }
  
  
  
  1.106     +2 -2      apr/include/apr_file_io.h
  
  Index: apr_file_io.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_file_io.h,v
  retrieving revision 1.105
  retrieving revision 1.106
  diff -u -r1.105 -r1.106
  --- apr_file_io.h	2001/07/18 19:12:41	1.105
  +++ apr_file_io.h	2001/07/26 15:39:25	1.106
  @@ -575,14 +575,14 @@
    * @param file The file to enable inheritance.
    * @deffunc void apr_file_set_inherit(apr_file_t *file)
    */
  -APR_DECLARE_SET_INHERIT(file);
  +APR_DECLARE(void) apr_file_set_inherit(apr_file_t *file);
   
   /**
    * Unset a file from being inherited by child processes.
    * @param file The file to disable inheritance.
    * @deffunc void apr_file_unset_inherit(apr_file_t *file)
    */
  -APR_DECLARE_UNSET_INHERIT(file);
  +APR_DECLARE(void) apr_file_unset_inherit(apr_file_t *file);
   
   #ifdef __cplusplus
   }