home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277210_apr_inherit.h < prev    next >
C/C++ Source or Header  |  2004-02-13  |  2KB  |  51 lines

  1. /* Copyright 2000-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef APR_INHERIT_H
  17. #define APR_INHERIT_H
  18.  
  19. /**
  20.  * @file apr_inherit.h 
  21.  * @brief APR File Handle Inheritance Helpers
  22.  * @remark This internal header includes internal declaration helpers 
  23.  * for other headers to declare apr_foo_inherit_[un]set functions.
  24.  */
  25.  
  26. /**
  27.  * Prototype for type-specific declarations of apr_foo_inherit_set 
  28.  * functions.  
  29.  * @remark Doxygen unwraps this macro (via doxygen.conf) to provide 
  30.  * actual help for each specific occurance of apr_foo_inherit_set.
  31.  * @remark the linkage is specified for APR. It would be possible to expand
  32.  *       the macros to support other linkages.
  33.  */
  34. #define APR_DECLARE_INHERIT_SET(type) \
  35.     APR_DECLARE(apr_status_t) apr_##type##_inherit_set( \
  36.                                           apr_##type##_t *the##type)
  37.  
  38. /**
  39.  * Prototype for type-specific declarations of apr_foo_inherit_unset 
  40.  * functions.  
  41.  * @remark Doxygen unwraps this macro (via doxygen.conf) to provide 
  42.  * actual help for each specific occurance of apr_foo_inherit_unset.
  43.  * @remark the linkage is specified for APR. It would be possible to expand
  44.  *       the macros to support other linkages.
  45.  */
  46. #define APR_DECLARE_INHERIT_UNSET(type) \
  47.     APR_DECLARE(apr_status_t) apr_##type##_inherit_unset( \
  48.                                           apr_##type##_t *the##type)
  49.  
  50. #endif    /* ! APR_INHERIT_H */
  51.