summaryrefslogtreecommitdiff
path: root/ext/dom/xml_common.h
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2003-11-29 20:40:18 +0000
committerRob Richards <rrichards@php.net>2003-11-29 20:40:18 +0000
commit6ac34646acf2f7088614c6c778b17e839e1bf161 (patch)
treed91c6fd9a959fa366f9d798e0cceb1ab42d957b4 /ext/dom/xml_common.h
parent154db581aead2c17314d300c076d57d917d93b9e (diff)
downloadphp-git-6ac34646acf2f7088614c6c778b17e839e1bf161.tar.gz
implement namednodemap and nodelist
fix xsl/dom integration under windows update tests and examples
Diffstat (limited to 'ext/dom/xml_common.h')
-rw-r--r--ext/dom/xml_common.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/dom/xml_common.h b/ext/dom/xml_common.h
index 8515eecbfb..86f492e2b8 100644
--- a/ext/dom/xml_common.h
+++ b/ext/dom/xml_common.h
@@ -24,9 +24,6 @@
#include "ext/libxml/php_libxml.h"
-zend_class_entry *dom_node_class_entry;
-
-
typedef struct _dom_doc_props {
int formatoutput;
int validateonparse;
@@ -59,6 +56,7 @@ typedef struct _dom_object {
#define PHP_DOM_EXPORT(__type) PHPAPI __type
+PHP_DOM_EXPORT(zend_class_entry *) dom_node_class_entry;
PHP_DOM_EXPORT(dom_object *) php_dom_object_get_data(xmlNodePtr obj);
PHP_DOM_EXPORT(zval *) php_dom_create_object(xmlNodePtr obj, int *found, zval *in, zval* return_value, dom_object *domobj TSRMLS_DC);
PHP_DOM_EXPORT(xmlNodePtr) dom_object_get_node(dom_object *obj);