diff options
Diffstat (limited to 'ext/xmlwriter/php_xmlwriter.h')
-rw-r--r-- | ext/xmlwriter/php_xmlwriter.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/xmlwriter/php_xmlwriter.h b/ext/xmlwriter/php_xmlwriter.h index 5c5f263b18..57a09c5f96 100644 --- a/ext/xmlwriter/php_xmlwriter.h +++ b/ext/xmlwriter/php_xmlwriter.h @@ -51,7 +51,9 @@ PHP_FUNCTION(xmlwriter_start_attribute); PHP_FUNCTION(xmlwriter_end_attribute); PHP_FUNCTION(xmlwriter_start_attribute_ns); PHP_FUNCTION(xmlwriter_write_attribute); +#if LIBXML_VERSION >= 20617 PHP_FUNCTION(xmlwriter_write_attribute_ns); +#endif PHP_FUNCTION(xmlwriter_start_element); PHP_FUNCTION(xmlwriter_end_element); PHP_FUNCTION(xmlwriter_start_element_ns); @@ -66,8 +68,10 @@ PHP_FUNCTION(xmlwriter_write_cdata); PHP_FUNCTION(xmlwriter_text); PHP_FUNCTION(xmlwriter_start_document); PHP_FUNCTION(xmlwriter_end_document); +#if LIBXML_VERSION >= 20616 PHP_FUNCTION(xmlwriter_write_comment); PHP_FUNCTION(xmlwriter_start_comment); +#endif PHP_FUNCTION(xmlwriter_end_comment); PHP_FUNCTION(xmlwriter_start_dtd); |