summaryrefslogtreecommitdiff
path: root/ext/simplexml/php_simplexml.h
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2003-05-26 03:57:41 +0000
committerSterling Hughes <sterling@php.net>2003-05-26 03:57:41 +0000
commitafc21967157e26e007924c5aaf7b57d0068e4711 (patch)
tree25236feedb69c957234f8bce10b2d14417e13d48 /ext/simplexml/php_simplexml.h
parent380bf699ae1afad672cf737d70dffeb283e73f4c (diff)
downloadphp-git-afc21967157e26e007924c5aaf7b57d0068e4711.tar.gz
add support for querying nodes with xpath expressions.
Diffstat (limited to 'ext/simplexml/php_simplexml.h')
-rw-r--r--ext/simplexml/php_simplexml.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h
index ebe165a8f5..2861ab9753 100644
--- a/ext/simplexml/php_simplexml.h
+++ b/ext/simplexml/php_simplexml.h
@@ -53,6 +53,7 @@ PHP_MINFO_FUNCTION(simplexml);
typedef struct {
zend_object zo;
xmlDocPtr document;
+ xmlXPathContextPtr xpath;
xmlNodePtr node;
} php_sxe_object;