diff options
Diffstat (limited to 'ext/simplexml/php_simplexml.h')
-rw-r--r-- | ext/simplexml/php_simplexml.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h index 1b325ca9cd..146a818578 100644 --- a/ext/simplexml/php_simplexml.h +++ b/ext/simplexml/php_simplexml.h @@ -64,6 +64,12 @@ typedef struct { HashTable *properties; simplexml_nsmap *nsmapptr; xmlXPathContextPtr xpath; + struct { + xmlNodePtr node; + char *name; + int namelen; + zval *data; + } iter; } php_sxe_object; |