administrativa
[m6w6/ext-psi] / src / types / cpp_macro_call.h
index 5c8d9a8cc75d227e861afd070389ae6a21c06174..63e6414b68834d0c0745a97719c784f2d98e7e59 100644 (file)
@@ -31,14 +31,15 @@ struct psi_plist;
 
 struct psi_cpp_macro_call {
        struct psi_token *token;
-       char *name;
+       zend_string *name;
        struct psi_plist *args;
 };
 
-struct psi_cpp_macro_call *psi_cpp_macro_call_init(const char *name,
+struct psi_cpp_macro_call *psi_cpp_macro_call_init(zend_string *name,
                struct psi_plist *args);
 struct psi_cpp_macro_call *psi_cpp_macro_call_copy(
                struct psi_cpp_macro_call *call);
 void psi_cpp_macro_call_free(struct psi_cpp_macro_call **call_ptr);
+void psi_cpp_macro_call_dump(int fd, struct psi_cpp_macro_call *call);
 
 #endif