diff options
author | Xinchen Hui <laruence@gmail.com> | 2014-04-14 19:27:22 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@gmail.com> | 2014-04-14 19:27:22 +0800 |
commit | a975c7e0fe95a94c119eb1c8e519b2357aa50dcc (patch) | |
tree | e6a353267fafcb316add10b0a60c6c07ea4d25a7 /ext/simplexml/php_simplexml.h | |
parent | b178992cd16a13b68844bcb60fcee9cebabe737b (diff) | |
download | php-git-a975c7e0fe95a94c119eb1c8e519b2357aa50dcc.tar.gz |
Refactor simpleXML (compilable, but incompleted)
Diffstat (limited to 'ext/simplexml/php_simplexml.h')
-rw-r--r-- | ext/simplexml/php_simplexml.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h index 7314d8c825..b908e4c722 100644 --- a/ext/simplexml/php_simplexml.h +++ b/ext/simplexml/php_simplexml.h @@ -55,7 +55,6 @@ typedef enum { } SXE_ITER; typedef struct { - zend_object zo; php_libxml_node_ptr *node; php_libxml_ref_obj *document; HashTable *properties; @@ -65,10 +64,11 @@ typedef struct { xmlChar *nsprefix; int isprefix; SXE_ITER type; - zval *data; + zval data; } iter; - zval *tmp; + zval tmp; zend_function *fptr_count; + zend_object zo; } php_sxe_object; #ifdef ZTS |