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 du...@apache.org on 2007/03/08 08:38:15 UTC

svn commit: r515952 - /webservices/axis2/trunk/c/include/axis2_op.h

Author: dushshantha
Date: Wed Mar  7 23:38:14 2007
New Revision: 515952

URL: http://svn.apache.org/viewvc?view=rev&rev=515952
Log:
made a parameter const

M    axis2_op.h

Modified:
    webservices/axis2/trunk/c/include/axis2_op.h

Modified: webservices/axis2/trunk/c/include/axis2_op.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_op.h?view=diff&rev=515952&r1=515951&r2=515952
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_op.h (original)
+++ webservices/axis2/trunk/c/include/axis2_op.h Wed Mar  7 23:38:14 2007
@@ -36,10 +36,6 @@
  * @{
  */
 
-/**
- * @file axis2_op.h
- */
-
 #include <axis2_param_container.h>
 #include <axis2_svc.h>
 #include <axis2_msg_recv.h>
@@ -75,6 +71,16 @@
 /** SOAP action string constant */
 #define AXIS2_SOAP_ACTION "soapAction"
 
+    
+    /**
+     * Creates operation struct.
+     * @param env pointer to environment struct
+     * @return pointer to newly created operation
+     */
+    AXIS2_EXTERN axis2_op_t *AXIS2_CALL
+    axis2_op_create(const axis2_env_t *env);
+
+
     /**
      * Frees operation.
      * @param op pointer to operation
@@ -475,7 +481,7 @@
     AXIS2_EXTERN struct axis2_op_ctx *AXIS2_CALL
     axis2_op_find_existing_op_ctx(axis2_op_t *op,
         const axis2_env_t *env,
-        struct axis2_msg_ctx *msg_ctx);
+        const struct axis2_msg_ctx *msg_ctx);
 
     /**
      * Registers given operation context against this operation. Registration
@@ -555,14 +561,6 @@
     AXIS2_EXTERN axis2_param_container_t *AXIS2_CALL
     axis2_op_get_param_container(const axis2_op_t *op,
         const axis2_env_t *env);
-
-    /**
-     * Creates operation struct.
-     * @param env pointer to environment struct
-     * @return pointer to newly created operation
-     */
-    AXIS2_EXTERN axis2_op_t *AXIS2_CALL
-    axis2_op_create(const axis2_env_t *env);
 
     /**
      * Creates operation struct for an operation defined in a module.



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org