12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef XSL_FE_H
- #define XSL_FE_H
- extern const zend_function_entry php_xsl_xsltprocessor_class_functions[];
- extern zend_class_entry *xsl_xsltprocessor_class_entry;
- PHP_FUNCTION(xsl_xsltprocessor_import_stylesheet);
- PHP_FUNCTION(xsl_xsltprocessor_transform_to_doc);
- PHP_FUNCTION(xsl_xsltprocessor_transform_to_uri);
- PHP_FUNCTION(xsl_xsltprocessor_transform_to_xml);
- PHP_FUNCTION(xsl_xsltprocessor_set_parameter);
- PHP_FUNCTION(xsl_xsltprocessor_get_parameter);
- PHP_FUNCTION(xsl_xsltprocessor_remove_parameter);
- PHP_FUNCTION(xsl_xsltprocessor_has_exslt_support);
- PHP_FUNCTION(xsl_xsltprocessor_register_php_functions);
- PHP_FUNCTION(xsl_xsltprocessor_set_profiling);
- PHP_FUNCTION(xsl_xsltprocessor_set_security_prefs);
- PHP_FUNCTION(xsl_xsltprocessor_get_security_prefs);
- #endif
|