X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Fcontext.h;fp=src%2Fcontext.h;h=4f86444770dc36a7a190a7d4d83c8fd868c678ff;hp=77db31a56fbd5aa8df89224b371a55b7f95767df;hb=6a8a77b52b636041de54d1022016b4f2aa510c05;hpb=596f215b67dd267284df4fe0e11f0ca4d197bfc1;ds=sidebyside diff --git a/src/context.h b/src/context.h index 77db31a..4f86444 100644 --- a/src/context.h +++ b/src/context.h @@ -14,7 +14,7 @@ struct PSI_ContextOps { void (*init)(PSI_Context *C); void (*dtor)(PSI_Context *C); zend_function_entry *(*compile)(PSI_Context *C); - void (*call)(PSI_Context *C, impl_val *ret_val, decl *decl, impl_val **args); + void (*call)(PSI_Context *C, impl_val *ret_val, decl *decl); }; struct PSI_Context { @@ -30,7 +30,7 @@ PSI_Context *PSI_ContextInit(PSI_Context *C, PSI_ContextOps *ops, PSI_ContextErr void PSI_ContextBuild(PSI_Context *C, const char *path); int PSI_ContextValidate(PSI_Context *C, PSI_Parser *P); zend_function_entry *PSI_ContextCompile(PSI_Context *C); -void PSI_ContextCall(PSI_Context *C, impl_val *ret_val, decl *decl, impl_val **args); +void PSI_ContextCall(PSI_Context *C, impl_val *ret_val, decl *decl); void PSI_ContextDtor(PSI_Context *C); void PSI_ContextFree(PSI_Context **C);