1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-08 04:22:21 +03:00

Improve documentation.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87899 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ben Laurie
2001-01-28 20:55:54 +00:00
parent 09dcf522a3
commit 9ee51ccaae

View File

@@ -59,6 +59,10 @@
#include "apr_lib.h" /* apr_isfoo() macros */ #include "apr_lib.h" /* apr_isfoo() macros */
#include "apr_hooks.h" #include "apr_hooks.h"
/**
* @package Symbol Export Macros
*/
/** /**
* AP_DECLARE_EXPORT is defined when building the Apache Core dynamic * AP_DECLARE_EXPORT is defined when building the Apache Core dynamic
* library, so that all public symbols are exported. * library, so that all public symbols are exported.
@@ -70,6 +74,8 @@
* including Apache's Core headers, to import and link the symbols from the * including Apache's Core headers, to import and link the symbols from the
* dynamic Apache Core library and assure appropriate indirection and calling * dynamic Apache Core library and assure appropriate indirection and calling
* conventions at compile time. * conventions at compile time.
*
* @deffunc AP_DECLARE_EXPORT/AP_DECLARE_STATIC
*/ */
#if !defined(WIN32) #if !defined(WIN32)
@@ -78,25 +84,28 @@
* use the most appropriate calling convention. Hook functions and other * use the most appropriate calling convention. Hook functions and other
* Core functions with variable arguments must use AP_DECLARE_NONSTD(). * Core functions with variable arguments must use AP_DECLARE_NONSTD().
* *
* @deffunc AP_DECLARE(rettype) ap_func(args); * @deffunc AP_DECLARE(rettype) ap_func(args)
*/ */
#define AP_DECLARE(type) type #define AP_DECLARE(type) type
/** /**
* Apache Core dso variable argument and hook functions are declared with * Apache Core dso variable argument and hook functions are declared with
* AP_DECLARE(), as they must use the C language calling convention. * AP_DECLARE_NONSTD(), as they must use the C language calling convention.
* *
* @deffunc AP_DECLARE_NONSTD(rettype) ap_func(args [...]); * @deffunc AP_DECLARE_NONSTD(rettype) ap_func(args [...])
*/ */
#define AP_DECLARE_NONSTD(type) type #define AP_DECLARE_NONSTD(type) type
/** /**
* Apache Core dso variables are declared with AP_MODULE_DECLARE_DATA. * Apache Core dso variables are declared with AP_MODULE_DECLARE_DATA.
* This assures the appropriate indirection is invoked at compile time. * This assures the appropriate indirection is invoked at compile time.
* *
* @deffunc AP_DECLARE_DATA type apr_variable;
* @tip extern AP_DECLARE_DATA type apr_variable; syntax is required for * @tip extern AP_DECLARE_DATA type apr_variable; syntax is required for
* declarations within headers to properly import the variable. * declarations within headers to properly import the variable.
* @deffunc AP_DECLARE_DATA type apr_variable
*/ */
#define AP_DECLARE_DATA #define AP_DECLARE_DATA
#elif defined(AP_DECLARE_STATIC) #elif defined(AP_DECLARE_STATIC)
#define AP_DECLARE(type) type __stdcall #define AP_DECLARE(type) type __stdcall
#define AP_DECLARE_NONSTD(type) type #define AP_DECLARE_NONSTD(type) type
@@ -128,11 +137,17 @@
* *
* The old SHARED_MODULE compile-time symbol is now the default behavior, * The old SHARED_MODULE compile-time symbol is now the default behavior,
* so it is no longer referenced anywhere with Apache 2.0. * so it is no longer referenced anywhere with Apache 2.0.
*
* @deffunc AP_MODULE_DECLARE_EXPORT
*/ */
#define AP_MODULE_DECLARE_EXPORT #define AP_MODULE_DECLARE_EXPORT
#define AP_MODULE_DECLARE_DATA __declspec(dllexport) #define AP_MODULE_DECLARE_DATA __declspec(dllexport)
#endif #endif
/**
* @package Hook Functions
*/
#define AP_DECLARE_HOOK(ret,name,args) \ #define AP_DECLARE_HOOK(ret,name,args) \
APR_DECLARE_EXTERNAL_HOOK(ap,AP,ret,name,args) APR_DECLARE_EXTERNAL_HOOK(ap,AP,ret,name,args)
@@ -141,39 +156,51 @@ APR_IMPLEMENT_EXTERNAL_HOOK_BASE(ap,AP,name)
/** /**
* Implement an Apache core hook that has no return code, and therefore * Implement an Apache core hook that has no return code, and therefore
* runs all of the registered functions * runs all of the registered functions.
* @param name The name of the hook * @param name The name of the hook
* @param args_decl The declaration of the arguments for the hook * @param args_decl The declaration of the arguments for the hook, for example
* @param args_used The names for the arguments for the hook * "(int x,void *y)"
* @deffunc void AP_IMPLEMENT_HOOK_VOID(name, args_decl, args_use) * @param args_use The arguments for the hook as used in a call, for example
* "(x,y)"
* @tip If IMPLEMENTing a hook that is not linked into the Apache core, * @tip If IMPLEMENTing a hook that is not linked into the Apache core,
* (e.g. within a dso) see APR_IMPLEMENT_EXTERNAL_HOOK_HOOK_VOID. * (e.g. within a dso) see APR_IMPLEMENT_EXTERNAL_HOOK_VOID.
* @deffunc void AP_IMPLEMENT_HOOK_VOID(name, args_decl, args_use)
*/ */
#define AP_IMPLEMENT_HOOK_VOID(name,args_decl,args_use) \ #define AP_IMPLEMENT_HOOK_VOID(name,args_decl,args_use) \
APR_IMPLEMENT_EXTERNAL_HOOK_VOID(ap,AP,name,args_decl,args_use) APR_IMPLEMENT_EXTERNAL_HOOK_VOID(ap,AP,name,args_decl,args_use)
/** /**
* Implement an Apache core hook that runs until one of the functions * Implement an Apache core hook that runs until one of the functions
* returns something other than OK or DECLINE * returns something other than ok or decline. That return value is
* then returned from the hook runner. If the hooks run to completion,
* then ok is returned. Note that if no hook runs it would probably be
* more correct to return decline, but this currently does not do so.
*
* @param ret The return type of the hook (and the hook runner)
* @param name The name of the hook * @param name The name of the hook
* @param args_decl The declaration of the arguments for the hook * @param args_decl The declaration of the arguments for the hook
* @param args_used The names for the arguments for the hook * @param args_used The names for the arguments for the hook
* @deffunc int AP_IMPLEMENT_HOOK_RUN_ALL(name, args_decl, args_use) * @param ok The "ok" return value
* @param decline The "decline" return value.
* @tip If IMPLEMENTing a hook that is not linked into the Apache core, * @tip If IMPLEMENTing a hook that is not linked into the Apache core,
* (e.g. within a dso) see APR_IMPLEMENT_EXTERNAL_HOOK_RUN_ALL. * (e.g. within a dso) see APR_IMPLEMENT_EXTERNAL_HOOK_RUN_ALL.
*/ * @deffunc ret AP_IMPLEMENT_HOOK_RUN_ALL(ret, name, args_decl, args_use, ok, decline) */
#define AP_IMPLEMENT_HOOK_RUN_ALL(ret,name,args_decl,args_use,ok,decline) \ #define AP_IMPLEMENT_HOOK_RUN_ALL(ret,name,args_decl,args_use,ok,decline) \
APR_IMPLEMENT_EXTERNAL_HOOK_RUN_ALL(ap,AP,ret,name,args_decl,args_use,ok,decline) APR_IMPLEMENT_EXTERNAL_HOOK_RUN_ALL(ap,AP,ret,name,args_decl,args_use,ok,decline)
/** /**
* Implement a hook that runs until the first function returns something * Implement a hook that runs until the first function that returns
* other than DECLINE * something other than decline. If all functions return decline, the
* hook runner returns decline.
*
* @param ret The return type of the hook (and the hook runner)
* @param name The name of the hook * @param name The name of the hook
* @param args_decl The declaration of the arguments for the hook * @param args_decl The declaration of the arguments for the hook
* @param args_used The names for the arguments for the hook * @param args_used The names for the arguments for the hook
* @deffunc int AP_IMPLEMENT_HOOK_RUN_FIRST(name, args_decl, args_use) * @param decline The "decline" return value.
* @tip If IMPLEMENTing a hook that is not linked into the Apache core * @tip If IMPLEMENTing a hook that is not linked into the Apache core
* (e.g. within a dso) see APR_IMPLEMENT_EXTERNAL_HOOK_RUN_FIRST. * (e.g. within a dso) see APR_IMPLEMENT_EXTERNAL_HOOK_RUN_FIRST.
* @deffunc ret AP_IMPLEMENT_HOOK_RUN_FIRST(ret, name, args_decl, args_use, decline)
*/ */
#define AP_IMPLEMENT_HOOK_RUN_FIRST(ret,name,args_decl,args_use,decline) \ #define AP_IMPLEMENT_HOOK_RUN_FIRST(ret,name,args_decl,args_use,decline) \
APR_IMPLEMENT_EXTERNAL_HOOK_RUN_FIRST(ap,AP,ret,name,args_decl,args_use,decline) APR_IMPLEMENT_EXTERNAL_HOOK_RUN_FIRST(ap,AP,ret,name,args_decl,args_use,decline)