diff options
author | Rob Richards <rrichards@php.net> | 2003-08-24 10:24:22 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2003-08-24 10:24:22 +0000 |
commit | b196c0551ed9ef4bbe598b818da90f2d4c45acbd (patch) | |
tree | 01c512369dff436b6b197bfb18658dff015c3759 /ext/dom/php_dom.h | |
parent | 09481c642b59737096d25518a290d8a3bb710042 (diff) | |
download | php-git-b196c0551ed9ef4bbe598b818da90f2d4c45acbd.tar.gz |
implement stricterrorcheck
fix clonenode
cleanup error routines
forgot these files
Diffstat (limited to 'ext/dom/php_dom.h')
-rw-r--r-- | ext/dom/php_dom.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/dom/php_dom.h b/ext/dom/php_dom.h index 6bdf13952f..c162de4e3c 100644 --- a/ext/dom/php_dom.h +++ b/ext/dom/php_dom.h @@ -71,7 +71,8 @@ zend_object_value dom_objects_new(zend_class_entry *class_type TSRMLS_DC); #if defined(LIBXML_XPATH_ENABLED) zend_object_value dom_xpath_objects_new(zend_class_entry *class_type TSRMLS_DC); #endif -void php_dom_throw_error(int error_code, zval **retval TSRMLS_DC); +int dom_get_strict_error(dom_ref_obj *document); +void php_dom_throw_error(int error_code, int strict_error TSRMLS_DC); void node_free_resource(xmlNodePtr node TSRMLS_DC); void node_list_unlink(xmlNodePtr node TSRMLS_DC); int decrement_node_ptr(dom_object *object TSRMLS_DC); |