diff options
| author | Melvyn Sopacua <msopacua@php.net> | 2002-11-10 12:18:03 +0000 |
|---|---|---|
| committer | Melvyn Sopacua <msopacua@php.net> | 2002-11-10 12:18:03 +0000 |
| commit | d3da22fb95b8a6d4b53df52f9edc5e822f4b3715 (patch) | |
| tree | 7b7b85529d8607a0284a7957a6d45a5db9f011c1 /ext/xslt/php_sablot.h | |
| parent | 138a1695f5dcffb80f7bec1a45836b68abd5f6f0 (diff) | |
| download | php-git-d3da22fb95b8a6d4b53df52f9edc5e822f4b3715.tar.gz | |
- implement xslt_backend_info
- add test for it
- fix some prototypes
Diffstat (limited to 'ext/xslt/php_sablot.h')
| -rw-r--r-- | ext/xslt/php_sablot.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/xslt/php_sablot.h b/ext/xslt/php_sablot.h index c35c9e001e..6205193715 100644 --- a/ext/xslt/php_sablot.h +++ b/ext/xslt/php_sablot.h @@ -50,6 +50,7 @@ extern zend_module_entry xslt_module_entry; #define XSLT_FUNCH_FREE(__var) if (__var) zval_ptr_dtor(&(__var)); #define XSLT_REG_ERRMSG(msg, handle) if (XSLT_ERRSTR(handle)) efree(XSLT_ERRSTR(handle)); \ XSLT_ERRSTR(handle) = estrdup(msg); +#define XSLT_NO_INFO "No information available." PHP_MINIT_FUNCTION(xslt); PHP_MINFO_FUNCTION(xslt); @@ -72,7 +73,7 @@ PHP_FUNCTION(xslt_getopt); #endif PHP_FUNCTION(xslt_backend_version); PHP_FUNCTION(xslt_backend_name); - +PHP_FUNCTION(xslt_backend_info); struct scheme_handlers { zval *sh_get_all; |
