diff options
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; }; |
