diff options
author | Rob Richards <rrichards@php.net> | 2003-07-24 13:18:40 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2003-07-24 13:18:40 +0000 |
commit | e8a87e5430dadb4b049d0d0ea0c849fd75c5e0be (patch) | |
tree | 1fb458db6264620f9debeea6f83d0f0013338b4c /ext/dom/dom_properties.h | |
parent | 55097d1dcf6eee94413dc2795f923c0ef9f45d3f (diff) | |
download | php-git-e8a87e5430dadb4b049d0d0ea0c849fd75c5e0be.tar.gz |
initial xpath implementation
make dom_object generic
Diffstat (limited to 'ext/dom/dom_properties.h')
-rw-r--r-- | ext/dom/dom_properties.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/dom/dom_properties.h b/ext/dom/dom_properties.h index 8bbc1fda04..b61f8e72a4 100644 --- a/ext/dom/dom_properties.h +++ b/ext/dom/dom_properties.h @@ -142,4 +142,9 @@ int dom_text_whole_text_read(dom_object *obj, zval **retval TSRMLS_DC); int dom_typeinfo_type_name_read(dom_object *obj, zval **retval TSRMLS_DC); int dom_typeinfo_type_namespace_read(dom_object *obj, zval **retval TSRMLS_DC); +#if defined(LIBXML_XPATH_ENABLED) +/* xpath properties */ +int dom_xpath_document_read(dom_object *obj, zval **retval TSRMLS_DC); +#endif + #endif /* DOM_PROPERTIERS_H */ |