You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@locus.apache.org on 2000/12/05 06:26:59 UTC

cvs commit: apr-util/include ap_hooks.h

rbb         00/12/04 21:26:59

  Modified:    include  ap_hooks.h
  Log:
  Put the HOOKS declarations back to AP_DECLARE instead of APR_DECLARE
  
  Revision  Changes    Path
  1.26      +3 -3      apr-util/include/ap_hooks.h
  
  Index: ap_hooks.h
  ===================================================================
  RCS file: /home/cvs/apr-util/include/ap_hooks.h,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- ap_hooks.h	2000/12/05 02:19:38	1.25
  +++ ap_hooks.h	2000/12/05 05:26:58	1.26
  @@ -62,7 +62,7 @@
    * @package Apache hooks functions
    */
   
  -#define APR_DECLARE_EXTERNAL_HOOK(link,ret,name,args) \
  +#define AP_DECLARE_EXTERNAL_HOOK(link,ret,name,args) \
   typedef ret HOOK_##name args; \
   link##_DECLARE(void) ap_hook_##name(HOOK_##name *pf, const char* const* aszPre, \
                                       const char * const *aszSucc, int nOrder); \
  @@ -76,8 +76,8 @@
       int nOrder; \
       } LINK_##name;
   
  -#define APR_DECLARE_HOOK(ret,name,args) \
  -APR_DECLARE_EXTERNAL_HOOK(AP,ret,name,args)
  +#define AP_DECLARE_HOOK(ret,name,args) \
  +AP_DECLARE_EXTERNAL_HOOK(AP,ret,name,args)
   
   #define AP_HOOK_STRUCT(members) \
   static struct { members } _hooks;