diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-01-21 14:00:55 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-01-21 14:00:55 +0000 |
commit | a592b7ef0ac911c49027e0a4a25e65e9b48eb671 (patch) | |
tree | 1bb32f0b155f9e2efcbb63e8b13aaaae89815cdd /ext/soap/php_sdl.h | |
parent | c375c6807333492602d400e79c558d0098164bf8 (diff) | |
download | php-git-a592b7ef0ac911c49027e0a4a25e65e9b48eb671.tar.gz |
XML Schema support was improved
xml tree cleanup (save memory and parsing time)
support for <inclide> and <import>
support for top-level <attribute>
support for <attribute> 'ref' attribute
support for top-level <attributeGroup>
support for <attributeGroup> 'ref' attribute
Diffstat (limited to 'ext/soap/php_sdl.h')
-rw-r--r-- | ext/soap/php_sdl.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/ext/soap/php_sdl.h b/ext/soap/php_sdl.h index ae6a90be6b..fd072f27b5 100644 --- a/ext/soap/php_sdl.h +++ b/ext/soap/php_sdl.h @@ -15,13 +15,15 @@ #define SOAP_LITERAL 2 struct _sdl { - HashTable docs; /* pointer to the parsed xml file */ - HashTable functions; /* array of sdlFunction */ - HashTable *types; /* array of sdlTypesPtr */ - HashTable *elements; /* array of sdlTypesPtr */ - HashTable *encoders; /* array of encodePtr */ - HashTable *bindings; /* array of sdlBindings (key'd by name) */ - HashTable *requests; /* array of sdlFunction (references) */ + HashTable docs; /* pointer to the parsed xml file */ + HashTable functions; /* array of sdlFunction */ + HashTable *types; /* array of sdlTypesPtr */ + HashTable *elements; /* array of sdlTypesPtr */ + HashTable *encoders; /* array of encodePtr */ + HashTable *bindings; /* array of sdlBindings (key'd by name) */ + HashTable *requests; /* array of sdlFunction (references) */ + HashTable *attributes; /* array of sdlAttributePtr */ + HashTable *attributeGroups; /* array of sdlTypesPtr */ char *target_ns; char *source; }; |