flush
[m6w6/ext-psi] / src / compiler.h
index c5e447fe84dbcbb57345becd9fbd33bef9790c8e..1374d39b776fa2124d44f6f89b8d0dfe157ef6cb 100644 (file)
@@ -9,8 +9,12 @@ typedef struct PSI_Compiler {
        impls *impls;
        char *lib;
        char *fn;
+       void *context;
 } PSI_Compiler;
 
-PSI_Compiler *PSI_CompilerInit(PSI_Compiler *C, PSI_Validator *V);
+PSI_Compiler *PSI_CompilerInit(PSI_Compiler *C, PSI_Validator *V, void *context);
+void PSI_CompilerDtor(PSI_Compiler *C);
+void PSI_CompilerFree(PSI_Compiler **C);
+zend_function_entry *PSI_CompilerCompile(PSI_Compiler *C);
 
 #endif