fix gdbinit; postprocessing macros
[m6w6/ext-psi] / src / types / impl_type.h
index 3a5ce21b682842667cf95c1c33441ded1a6b3b29..4a60e02162a333f0183e81787f162088d7333de2 100644 (file)
 
 struct psi_impl_type {
        struct psi_token *token;
-       char *name;
+       zend_string *name;
        token_t type;
 };
 
-struct psi_impl_type *psi_impl_type_init(token_t type, const char *name);
+struct psi_impl_type *psi_impl_type_init(token_t type, zend_string *name);
 void psi_impl_type_free(struct psi_impl_type **type_ptr);
+void psi_impl_type_dump(struct psi_dump *dump, struct psi_impl_type *type);
 
 #endif