X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Ftypes%2Fcpp_macro_call.h;h=63e6414b68834d0c0745a97719c784f2d98e7e59;hb=09529efcde471127419e141807b83b37077003a0;hp=5c8d9a8cc75d227e861afd070389ae6a21c06174;hpb=6509a2053456d0e63b6f383b757289d3016ed1a5;p=m6w6%2Fext-psi diff --git a/src/types/cpp_macro_call.h b/src/types/cpp_macro_call.h index 5c8d9a8..63e6414 100644 --- a/src/types/cpp_macro_call.h +++ b/src/types/cpp_macro_call.h @@ -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