orlikowski 01/06/09 04:33:08 Modified: include ap_config.h include apr.h.in include apu.h.in Log: Updating docs to change around the order of extern and AP[RU]_DECLARE_DATA. If this is incorrect, please yell. However, the vast majority of the code follows the convention documented in this patch. If this is in error, I will gladly back it out. Revision Changes Path 1.63 +1 -1 httpd-2.0/include/ap_config.h Index: ap_config.h =================================================================== RCS file: /home/cvs/httpd-2.0/include/ap_config.h,v retrieving revision 1.62 retrieving revision 1.63 diff -u -r1.62 -r1.63 --- ap_config.h 2001/05/20 15:26:17 1.62 +++ ap_config.h 2001/06/09 11:33:07 1.63 @@ -104,7 +104,7 @@ * Apache Core dso variables are declared with AP_MODULE_DECLARE_DATA. * This assures the appropriate indirection is invoked at compile time. * - * @tip extern AP_DECLARE_DATA type apr_variable; syntax is required for + * @tip AP_DECLARE_DATA extern type apr_variable; syntax is required for * declarations within headers to properly import the variable. * @deffunc AP_DECLARE_DATA type apr_variable */ 1.83 +1 -1 apr/include/apr.h.in Index: apr.h.in =================================================================== RCS file: /home/cvs/apr/include/apr.h.in,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- apr.h.in 2001/06/06 18:11:01 1.82 +++ apr.h.in 2001/06/09 11:33:07 1.83 @@ -217,7 +217,7 @@ * This assures the appropriate indirection is invoked at compile time. * * @deffunc APR_DECLARE_DATA type apr_variable; - * @tip extern APR_DECLARE_DATA type apr_variable; syntax is required for + * @tip APR_DECLARE_DATA extern type apr_variable; syntax is required for * declarations within headers to properly import the variable. */ #define APR_DECLARE_DATA 1.7 +1 -1 apr-util/include/apu.h.in Index: apu.h.in =================================================================== RCS file: /home/cvs/apr-util/include/apu.h.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- apu.h.in 2001/02/22 05:11:23 1.6 +++ apu.h.in 2001/06/09 11:33:08 1.7 @@ -92,7 +92,7 @@ * This assures the appropriate indirection is invoked at compile time. * * @deffunc APU_DECLARE_DATA type apr_variable; - * @tip extern APU_DECLARE_DATA type apr_variable; syntax is required for + * @tip APU_DECLARE_DATA extern type apr_variable; syntax is required for * declarations within headers to properly import the variable. */ #define APU_DECLARE_DATA