00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef AXIS2_SVR_CALLBACK_H
00019 #define AXIS2_SVR_CALLBACK_H
00020
00031 #ifdef __cplusplus
00032 extern "C"
00033 {
00034 #endif
00035
00036 #include <axis2_defines.h>
00037 #include <axis2_const.h>
00038 #include <axis2_msg_ctx.h>
00039
00041 typedef struct axis2_svr_callback axis2_svr_callback_t;
00042
00049 AXIS2_EXTERN void AXIS2_CALL
00050 axis2_svr_callback_free(axis2_svr_callback_t *svr_callback,
00051 const axutil_env_t *env);
00052
00060 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00061 axis2_svr_callback_handle_result(axis2_svr_callback_t *svr_callback,
00062 const axutil_env_t *env,
00063 axis2_msg_ctx_t *msg_ctx);
00064
00072 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00073 axis2_svr_callback_handle_fault(axis2_svr_callback_t *svr_callback,
00074 const axutil_env_t *env,
00075 axis2_msg_ctx_t *msg_ctx);
00076
00082 AXIS2_EXTERN axis2_svr_callback_t *AXIS2_CALL
00083 axis2_svr_callback_create(const axutil_env_t *env);
00084
00085
00087 #ifdef __cplusplus
00088 }
00089 #endif
00090
00091 #endif