Apache Portable Runtime
Macros
apr_inherit.h File Reference

APR File Handle Inheritance Helpers. More...

Go to the source code of this file.

Macros

#define APR_DECLARE_INHERIT_SET(type)
 
#define APR_DECLARE_INHERIT_UNSET(type)
 

Detailed Description

APR File Handle Inheritance Helpers.

Remarks
This internal header includes internal declaration helpers for other headers to declare apr_foo_inherit_[un]set functions.

Macro Definition Documentation

#define APR_DECLARE_INHERIT_SET (   type)
Value:
APR_DECLARE(apr_status_t) apr_##type##_inherit_set( \
apr_##type##_t *the##type)
#define APR_DECLARE(type)
Definition: apr.h:500
int apr_status_t
Definition: apr_errno.h:44

Prototype for type-specific declarations of apr_foo_inherit_set functions.

Remarks
Doxygen unwraps this macro (via doxygen.conf) to provide actual help for each specific occurrence of apr_foo_inherit_set.
the linkage is specified for APR. It would be possible to expand the macros to support other linkages.
#define APR_DECLARE_INHERIT_UNSET (   type)
Value:
APR_DECLARE(apr_status_t) apr_##type##_inherit_unset( \
apr_##type##_t *the##type)
#define APR_DECLARE(type)
Definition: apr.h:500
int apr_status_t
Definition: apr_errno.h:44

Prototype for type-specific declarations of apr_foo_inherit_unset functions.

Remarks
Doxygen unwraps this macro (via doxygen.conf) to provide actual help for each specific occurrence of apr_foo_inherit_unset.
the linkage is specified for APR. It would be possible to expand the macros to support other linkages.