X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=re_defs.h;h=d51eeb8b9db73fbd2642eaf2f54cb4e65b0337e9;hb=f609ee10b4b981c6c131936a39d13108d608a4fc;hp=23c83a11116344f0dfd154e2e54ad805c0e549ac;hpb=7b88eb9cbb0c1342a6480820450644708aed019c;p=perl%2Fmodules%2Fre-engine-Hooks.git diff --git a/re_defs.h b/re_defs.h index 23c83a1..d51eeb8 100644 --- a/re_defs.h +++ b/re_defs.h @@ -1,6 +1,10 @@ -EXTERN_C void reh_call_comp_hook(pTHX_ regexp *, regnode *); -EXTERN_C void reh_call_exec_hook(pTHX_ regexp *, regnode *, regmatch_info *, regmatch_state *); +EXTERN_C const struct regexp_engine reh_regexp_engine; -#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)) +EXTERN_C void reh_call_comp_begin_hook(pTHX_ regexp *); +EXTERN_C void reh_call_comp_node_hook(pTHX_ regexp *, regnode *); +EXTERN_C void reh_call_exec_node_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_COMP_NODE_HOOK(a, b) reh_call_comp_node_hook(aTHX_ (a), (b)) +#define REH_CALL_EXEC_NODE_HOOK(a, b, c, d) reh_call_exec_node_hook(aTHX_ (a), (b), (c), (d))