00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef AXIS2_WSDL_EXT_H
00019 #define AXIS2_WSDL_EXT_H
00020
00026 #include <axis2_const.h>
00027 #include <axis2_error.h>
00028 #include <axis2_defines.h>
00029 #include <axis2_env.h>
00030 #include <axis2_allocator.h>
00031 #include <axis2_wsdl_component.h>
00032
00033 #ifdef __cplusplus
00034 extern "C"
00035 {
00036 #endif
00037
00038 struct axis2_wsdl_component;
00039 typedef struct axis2_wsdl_ext axis2_wsdl_ext_t;
00040 typedef struct axis2_wsdl_ext_ops axis2_wsdl_ext_ops_t;
00041
00051 struct axis2_wsdl_ext_ops
00052 {
00056 axis2_status_t (AXIS2_CALL *
00057 free)(axis2_wsdl_ext_t *ext,
00058 const axis2_env_t *env);
00059
00060 };
00061
00068 struct axis2_wsdl_ext
00069 {
00070 axis2_wsdl_ext_ops_t *ops;
00071 axis2_char_t *namespc;
00072 };
00073
00078 AXIS2_EXTERN axis2_wsdl_ext_t * AXIS2_CALL
00079 axis2_wsdl_ext_create (const axis2_env_t *env);
00080
00081
00082
00083 #define AXIS2_WSDL_EXT_FREE(ext, env) \
00084 ((ext)->ops->free (ext, env))
00085
00086
00087
00090 #ifdef __cplusplus
00091 }
00092 #endif
00093 #endif