You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by da...@apache.org on 2006/05/02 06:46:12 UTC

svn commit: r398804 - in /webservices/axis2/trunk/c/include: axis2_op_client.h axis2_options.h axis2_svc_client.h

Author: damitha
Date: Mon May  1 21:46:08 2006
New Revision: 398804

URL: http://svn.apache.org/viewcvs?rev=398804&view=rev
Log:
Fixed the build break due to undefined refernece


Modified:
    webservices/axis2/trunk/c/include/axis2_op_client.h
    webservices/axis2/trunk/c/include/axis2_options.h
    webservices/axis2/trunk/c/include/axis2_svc_client.h

Modified: webservices/axis2/trunk/c/include/axis2_op_client.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_op_client.h?rev=398804&r1=398803&r2=398804&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_op_client.h (original)
+++ webservices/axis2/trunk/c/include/axis2_op_client.h Mon May  1 21:46:08 2006
@@ -169,6 +169,10 @@
      */
 	axis2_op_ctx_t* (AXIS2_CALL *
 	get_operation_context)(struct axis2_op_client *op_client);
+
+	axis2_status_t (AXIS2_CALL *
+	free)(struct axis2_op_client *op_client,
+				axis2_env_t **env);
 };
 
 /** 
@@ -213,6 +217,9 @@
 
 #define AXIS2_OPERATION_CLIENT_GET_OPERATION_CONTEXT(op_client, env) \
 		((op_client)->ops->get_operation_context(op_client, env))
+
+#define AXIS2_OPERATION_CLIENT_FREE(op_client, env) \
+		((op_client)->ops->free(op_client, env))
 
 /************************** End of function macros ****************************/    
 

Modified: webservices/axis2/trunk/c/include/axis2_options.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_options.h?rev=398804&r1=398803&r2=398804&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_options.h (original)
+++ webservices/axis2/trunk/c/include/axis2_options.h Mon May  1 21:46:08 2006
@@ -360,7 +360,7 @@
 #define AXIS2_OPTIONS_GET_TO(options, env) \
 		((options)->ops->get_to(options, env))
 
-#define AXIS2_OPTIONS_IS_SEPERATE_LISTNER(options, env) \
+#define AXIS2_OPTIONS_IS_USE_SEPERATE_LISTENER(options, env) \
 		((options)->ops->is_use_seperate_listener(options, env))
 
 #define AXIS2_OPTIONS_GET_PARENT(options, env) \

Modified: webservices/axis2/trunk/c/include/axis2_svc_client.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_svc_client.h?rev=398804&r1=398803&r2=398804&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_svc_client.h (original)
+++ webservices/axis2/trunk/c/include/axis2_svc_client.h Mon May  1 21:46:08 2006
@@ -275,7 +275,10 @@
 	axis2_svc_ctx_t* (AXIS2_CALL *
 	get_svc_ctx)(struct axis2_svc_client *svc_client,
 	   				axis2_env_t **env);		
-	
+
+	axis2_status_t (AXIS2_CALL *
+	free)(struct axis2_svc_client *svc_client,
+		                                axis2_env_t **env)	
 };
 
 /** 
@@ -370,6 +373,9 @@
 #define AXIS2_SERVICE_CLIENT_GET_SERVICE_CONTEXT(svc_client, env) \
 		((svc_client)->ops->get_svc_ctx(svc_client, env))
 
+
+#define AXIS2_SERVICE_FREE(svc_client, env) \
+		((svc_client)->ops->free(svc_client, env))
 
 /************************** End of function macros ****************************/