X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Hooks.git;a=blobdiff_plain;f=re_defs.h;h=f9510b8d216e01e820ef4b02ad618b2caaf4f0fc;hp=23c83a11116344f0dfd154e2e54ad805c0e549ac;hb=be51951333b8f0da55af1243a039e74bb15dedcd;hpb=ddc0fff25dec05b52b75b00b1ac6470b4498a6d1 diff --git a/re_defs.h b/re_defs.h index 23c83a1..f9510b8 100644 --- a/re_defs.h +++ b/re_defs.h @@ -1,6 +1,8 @@ +EXTERN_C void reh_call_comp_begin_hook(pTHX_ regexp *); EXTERN_C void reh_call_comp_hook(pTHX_ regexp *, regnode *); EXTERN_C void reh_call_exec_hook(pTHX_ regexp *, regnode *, regmatch_info *, regmatch_state *); +#define REH_CALL_COMP_BEGIN_HOOK(a) reh_call_comp_begin_hook(aTHX_ (a)) #define REH_CALL_REGCOMP_HOOK(a, b) reh_call_comp_hook(aTHX_ (a), (b)) #define REH_CALL_REGEXEC_HOOK(a, b, c, d) reh_call_exec_hook(aTHX_ (a), (b), (c), (d))