summaryrefslogtreecommitdiff
path: root/ext/xslt/php_sablot.h
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2002-04-16 06:37:19 +0000
committerSterling Hughes <sterling@php.net>2002-04-16 06:37:19 +0000
commit2b5a95b54bb988766e5f9e301641fcc1da6a2545 (patch)
treed6ee7f5812d541f3044d00df4e5937dc3752e727 /ext/xslt/php_sablot.h
parent59f3ba1490eb0ea8b7f8e6ab7ceb674e8615f863 (diff)
downloadphp-git-2b5a95b54bb988766e5f9e301641fcc1da6a2545.tar.gz
Prefix current functions with "sax" in order to make way for dom interface
backwards compatibility is maintained via function aliases xslt_sax_set_sax_handlers is a bit wierd, i guess...
Diffstat (limited to 'ext/xslt/php_sablot.h')
-rw-r--r--ext/xslt/php_sablot.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ext/xslt/php_sablot.h b/ext/xslt/php_sablot.h
index 97e2dc6391..545ad0b352 100644
--- a/ext/xslt/php_sablot.h
+++ b/ext/xslt/php_sablot.h
@@ -51,17 +51,17 @@ extern zend_module_entry xslt_module_entry;
PHP_MINIT_FUNCTION(xslt);
PHP_MINFO_FUNCTION(xslt);
-PHP_FUNCTION(xslt_create);
-PHP_FUNCTION(xslt_set_sax_handlers);
-PHP_FUNCTION(xslt_set_scheme_handlers);
-PHP_FUNCTION(xslt_set_error_handler);
-PHP_FUNCTION(xslt_set_base);
-PHP_FUNCTION(xslt_set_encoding);
-PHP_FUNCTION(xslt_set_log);
-PHP_FUNCTION(xslt_process);
+PHP_FUNCTION(xslt_sax_create);
+PHP_FUNCTION(xslt_sax_set_sax_handlers);
+PHP_FUNCTION(xslt_sax_set_scheme_handlers);
+PHP_FUNCTION(xslt_sax_set_error_handler);
+PHP_FUNCTION(xslt_sax_set_base);
+PHP_FUNCTION(xslt_sax_set_encoding);
+PHP_FUNCTION(xslt_sax_set_log);
+PHP_FUNCTION(xslt_sax_process);
+PHP_FUNCTION(xslt_sax_free);
PHP_FUNCTION(xslt_error);
PHP_FUNCTION(xslt_errno);
-PHP_FUNCTION(xslt_free);
struct scheme_handlers {
zval *get_all;