diff options
Diffstat (limited to 'ext/soap/php_sdl.h')
| -rw-r--r-- | ext/soap/php_sdl.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/ext/soap/php_sdl.h b/ext/soap/php_sdl.h index f765d5fbfd..221c7e03ef 100644 --- a/ext/soap/php_sdl.h +++ b/ext/soap/php_sdl.h @@ -63,11 +63,21 @@ struct _sdlSoapBinding { int style; }; +typedef struct _sdlSoapBindingFunctionHeader { + char *name; + char *ns; + int use; + sdlTypePtr element; + encodePtr encode; + char *encodingStyle; /* not implemented yet */ +} sdlSoapBindingFunctionHeader, *sdlSoapBindingFunctionHeaderPtr; + struct _sdlSoapBindingFunctionBody { - char *ns; - int use; - char *parts; /* not implemented yet */ - char *encodingStyle; /* not implemented yet */ + char *ns; + int use; + char *parts; /* not implemented yet */ + char *encodingStyle; /* not implemented yet */ + HashTable *headers; /* array of sdlSoapBindingFunctionHeaderPtr */ }; struct _sdlSoapBindingFunction { |
