00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef SANDESHA2_ACCEPT_H
00018 #define SANDESHA2_ACCEPT_H
00019
00025 #include <axutil_utils_defines.h>
00026 #include <axutil_env.h>
00027 #include <sandesha2_iom_rm_element.h>
00028 #include <sandesha2_acks_to.h>
00029 #include <sandesha2_error.h>
00030
00031 #ifdef __cplusplus
00032 extern "C"
00033 {
00034 #endif
00035
00040 typedef struct sandesha2_accept sandesha2_accept_t;
00041
00046 AXIS2_DECLARE_DATA struct sandesha2_accept
00047 {
00048 sandesha2_iom_rm_element_t element;
00049 };
00050
00051 AXIS2_EXTERN sandesha2_accept_t* AXIS2_CALL
00052 sandesha2_accept_create(
00053 const axutil_env_t *env,
00054 axis2_char_t *rm_ns_value,
00055 axis2_char_t *addr_ns_value);
00056
00057 axis2_status_t AXIS2_CALL
00058 sandesha2_accept_set_acks_to(
00059 sandesha2_accept_t *accept,
00060 const axutil_env_t *env,
00061 sandesha2_acks_to_t *acks_to);
00062
00063 sandesha2_acks_to_t * AXIS2_CALL
00064 sandesha2_accept_get_acks_to(
00065 sandesha2_accept_t *accept,
00066 const axutil_env_t *env);
00067
00069 #ifdef __cplusplus
00070 }
00071 #endif
00072
00073 #endif
00074