From 793bc648bf1217f093b7a01ff1343268c805967a Mon Sep 17 00:00:00 2001 From: Christian Stocker Date: Fri, 18 Jan 2002 07:58:47 +0000 Subject: # sorry for the mixing of different things in this commit - added DOMXML_PARAM_THREE macro - renamed domxml_dumpmem to domxml_dump_mem, added alias for domxml_dumpmem - domxml_has_attributes was missing in in zend_function_entry @- added function domxml_dump_file($filename,[$compression]). Dumps XML to @ a file and uses compression, if specified (chregu) @- added exslt integration (see http://exslt.org for details). To be @ configured with --with-dom-exslt[=DIR] (and --with-dom-xslt) (chregu, jaroslaw) --- ext/domxml/php_domxml.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'ext/domxml/php_domxml.h') diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index 3d31e6adeb..e58e1d3a81 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -41,6 +41,10 @@ #include #include #include +#if HAVE_DOMEXSLT +#include +#include +#endif #endif extern zend_module_entry domxml_module_entry; @@ -74,7 +78,9 @@ PHP_FUNCTION(domxml_doc_create_entity_reference); PHP_FUNCTION(domxml_doc_imported_node); PHP_FUNCTION(domxml_add_root); PHP_FUNCTION(domxml_intdtd); -PHP_FUNCTION(domxml_dumpmem); +PHP_FUNCTION(domxml_dump_mem); +PHP_FUNCTION(domxml_dump_mem_file); + #if defined(LIBXML_HTML_ENABLED) PHP_FUNCTION(domxml_html_dump_mem); #endif -- cgit v1.2.1