You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by na...@apache.org on 2006/02/10 06:24:20 UTC

svn commit: r376561 - in /webservices/axis2/trunk/c/samples/client/echo: axis2_echo_stub.c axis2_echo_stub.h echo_client.c

Author: nandika
Date: Thu Feb  9 21:24:17 2006
New Revision: 376561

URL: http://svn.apache.org/viewcvs?rev=376561&view=rev
Log:
modified to compile on windows

Modified:
    webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.c
    webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.h
    webservices/axis2/trunk/c/samples/client/echo/echo_client.c

Modified: webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.c?rev=376561&r1=376560&r2=376561&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.c (original)
+++ webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.c Thu Feb  9 21:24:17 2006
@@ -19,8 +19,7 @@
 #include <axis2_msg_ctx.h>
 #include <axis2_call.h>
 
-
-axis2_stub_t *AXIS2_CALL 
+axis2_stub_t *
 axis2_echo_stub_create_with_endpoint_ref_and_client_home(axis2_env_t **env,
                                             axis2_endpoint_ref_t *endpoint_ref,
                                             axis2_char_t *client_home)
@@ -41,7 +40,7 @@
 	return stub;
 }
 
-axis2_stub_t *AXIS2_CALL 
+axis2_stub_t *
 axis2_echo_stub_create_with_endpoint_uri_and_client_home(axis2_env_t **env,
                                             axis2_char_t *endpoint_uri,
                                             axis2_char_t *client_home)
@@ -64,8 +63,7 @@
 }
 
 /***************************Function implementation****************************/
-
-axis2_om_node_t *AXIS2_CALL
+axis2_om_node_t *
 axis2_echo_stub_echo(axis2_stub_t *stub,
                         axis2_env_t **env,
                         axis2_om_node_t *node)

Modified: webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.h?rev=376561&r1=376560&r2=376561&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.h (original)
+++ webservices/axis2/trunk/c/samples/client/echo/axis2_echo_stub.h Thu Feb  9 21:24:17 2006
@@ -36,7 +36,7 @@
 {
 #endif
 
-AXIS2_DECLARE(axis2_om_node_t *)
+axis2_om_node_t *
 axis2_echo_stub_echo(axis2_stub_t *stub,
                         axis2_env_t **env,
                         axis2_om_node_t *node);
@@ -46,7 +46,7 @@
  * @param endpoint reference
  * @return pointer to newly created axis2_stub struct
  */
-AXIS2_DECLARE(axis2_stub_t *) 
+axis2_stub_t *
 axis2_echo_stub_create_with_endpoint_ref_and_client_home(axis2_env_t **env,
                                             axis2_endpoint_ref_t *endpoint_ref,
                                             axis2_char_t *client_home);
@@ -56,7 +56,7 @@
  * @param endpoint uri
  * @return pointer to newly created axis2_stub struct
  */
-AXIS2_DECLARE(axis2_stub_t *)
+axis2_stub_t *
 axis2_echo_stub_create_with_endpoint_uri_and_client_home(axis2_env_t **env,
                                             axis2_char_t *endpoint_uri,
                                             axis2_char_t *client_home);

Modified: webservices/axis2/trunk/c/samples/client/echo/echo_client.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/samples/client/echo/echo_client.c?rev=376561&r1=376560&r2=376561&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/client/echo/echo_client.c (original)
+++ webservices/axis2/trunk/c/samples/client/echo/echo_client.c Thu Feb  9 21:24:17 2006
@@ -95,6 +95,7 @@
     {
         AXIS2_OM_NODE_FREE_TREE(node, &env);
     }
+    getchar();
     return status;
 }