summaryrefslogtreecommitdiff
path: root/ext/xslt/php_sablot.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/xslt/php_sablot.h')
-rw-r--r--ext/xslt/php_sablot.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/ext/xslt/php_sablot.h b/ext/xslt/php_sablot.h
index 0f0235248b..5f6061ed11 100644
--- a/ext/xslt/php_sablot.h
+++ b/ext/xslt/php_sablot.h
@@ -62,29 +62,29 @@ PHP_FUNCTION(xslt_errno);
PHP_FUNCTION(xslt_free);
struct scheme_handlers {
- struct xslt_function *get_all;
- struct xslt_function *open;
- struct xslt_function *get;
- struct xslt_function *put;
- struct xslt_function *close;
+ zval *get_all;
+ zval *open;
+ zval *get;
+ zval *put;
+ zval *close;
};
struct sax_handlers {
- struct xslt_function *doc_start;
- struct xslt_function *element_start;
- struct xslt_function *element_end;
- struct xslt_function *namespace_start;
- struct xslt_function *namespace_end;
- struct xslt_function *comment;
- struct xslt_function *pi;
- struct xslt_function *characters;
- struct xslt_function *doc_end;
+ zval *doc_start;
+ zval *element_start;
+ zval *element_end;
+ zval *namespace_start;
+ zval *namespace_end;
+ zval *comment;
+ zval *pi;
+ zval *characters;
+ zval *doc_end;
};
struct xslt_handlers {
struct scheme_handlers scheme;
struct sax_handlers sax;
- struct xslt_function *error;
+ zval *error;
};
struct xslt_processor {