diff options
| author | Melvyn Sopacua <msopacua@php.net> | 2002-10-06 16:32:24 +0000 |
|---|---|---|
| committer | Melvyn Sopacua <msopacua@php.net> | 2002-10-06 16:32:24 +0000 |
| commit | 8e1da7dbdaa4acb3095125369abc7bf2dae3030f (patch) | |
| tree | d585742737894971bcb33637be5da1fbaab9bf40 /ext/xslt/php_sablot.h | |
| parent | 12f47fe85ab30200c8246f9a333e7a5352fe705c (diff) | |
| download | php-git-8e1da7dbdaa4acb3095125369abc7bf2dae3030f.tar.gz | |
MFB
Diffstat (limited to 'ext/xslt/php_sablot.h')
| -rw-r--r-- | ext/xslt/php_sablot.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/xslt/php_sablot.h b/ext/xslt/php_sablot.h index abac3aa18b..f2c5b993a4 100644 --- a/ext/xslt/php_sablot.h +++ b/ext/xslt/php_sablot.h @@ -41,6 +41,7 @@ extern zend_module_entry xslt_module_entry; #define XSLT_ERROR(handle) ((handle)->handlers->error) #define XSLT_PROCESSOR(handle) ((handle)->processor.ptr) +#define XSLT_SITUATION(handle) ((handle)->processor.sit) #define XSLT_ERRNO(handle) ((handle)->err->no) #define XSLT_ERRSTR(handle) ((handle)->err->str) @@ -63,6 +64,7 @@ PHP_FUNCTION(xslt_error); PHP_FUNCTION(xslt_errno); PHP_FUNCTION(xslt_free); PHP_FUNCTION(xslt_set_object); +PHP_FUNCTION(xslt_setopt); PHP_FUNCTION(xslt_backend_version); PHP_FUNCTION(xslt_backend_name); @@ -95,6 +97,7 @@ struct xslt_handlers { struct xslt_processor { SablotHandle ptr; + SablotSituation sit; long idx; }; |
