diff options
Diffstat (limited to 'ext/soap/php_schema.h')
-rw-r--r-- | ext/soap/php_schema.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/soap/php_schema.h b/ext/soap/php_schema.h index e18391b58..58b8f32cb 100644 --- a/ext/soap/php_schema.h +++ b/ext/soap/php_schema.h @@ -17,7 +17,7 @@ | Dmitry Stogov <dmitry@zend.com> | +----------------------------------------------------------------------+ */ -/* $Id: php_schema.h,v 1.13.2.1 2006/01/01 12:50:13 sniper Exp $ */ +/* $Id: php_schema.h,v 1.13.2.2 2006/04/09 23:35:51 andrei Exp $ */ #ifndef PHP_SCHEMA_H #define PHP_SCHEMA_H @@ -26,9 +26,15 @@ int load_schema(sdlCtx *ctx, xmlNodePtr schema TSRMLS_DC); void schema_pass2(sdlCtx *ctx); void delete_model(void *handle); +void delete_model_persistent(void *handle); void delete_type(void *data); +void delete_type_persistent(void *data); void delete_extra_attribute(void *attribute); +void delete_extra_attribute_persistent(void *attribute); void delete_attribute(void *attribute); +void delete_attribute_persistent(void *attribute); void delete_restriction_var_int(void *rvi); +void delete_restriction_var_int_persistent(void *rvi); void delete_restriction_var_char(void *srvc); +void delete_restriction_var_char_persistent(void *srvc); #endif |