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 pi...@apache.org on 2006/08/03 14:27:09 UTC

svn commit: r428387 - in /webservices/axis2/trunk/c: include/axis2_disp.h modules/core/engine/disp.c

Author: pini
Date: Thu Aug  3 05:27:09 2006
New Revision: 428387

URL: http://svn.apache.org/viewvc?rev=428387&view=rev
Log:
Updated doxygen comments to clean doc structure


Modified:
    webservices/axis2/trunk/c/include/axis2_disp.h
    webservices/axis2/trunk/c/modules/core/engine/disp.c

Modified: webservices/axis2/trunk/c/include/axis2_disp.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_disp.h?rev=428387&r1=428386&r2=428387&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_disp.h (original)
+++ webservices/axis2/trunk/c/include/axis2_disp.h Thu Aug  3 05:27:09 2006
@@ -40,15 +40,18 @@
 #endif
     struct axis2_op;
     struct axis2_svc;
-    struct axis2_disp;
-    struct axis2_disp_ops;
+
+    /** Type name for struct axis2_disp */
+    typedef struct axis2_disp axis2_disp_t;
+    /** Type name for struct axis2_disp_ops */
+    typedef struct axis2_disp_ops axis2_disp_ops_t;
 
     /**
      * Dispatcher ops struct
      * Encapsulator struct for operations of axis2_dispatcher
      *
      */
-    AXIS2_DECLARE_DATA typedef struct axis2_disp_ops
+    AXIS2_DECLARE_DATA struct axis2_disp_ops
     {
         /**
          * @param disp pointer to dispatcher
@@ -56,7 +59,7 @@
          */
         axis2_handler_t* (AXIS2_CALL 
                 *get_base)(
-		            struct axis2_disp *disp,
+		            const axis2_disp_t *disp,
                     const axis2_env_t *env);
 
         /**
@@ -65,7 +68,7 @@
          */
         axis2_qname_t* (AXIS2_CALL 
                 *get_qname)(
-                    struct axis2_disp *disp,
+                    const axis2_disp_t *disp,
                     const axis2_env_t *env);
 
         /**
@@ -108,18 +111,16 @@
                     const axis2_env_t *env,
                     struct axis2_svc *svc);
 
-    }
-    axis2_disp_ops_t;
+    };
 
     /**
      * dispatcher struct
      */
-    typedef struct axis2_disp
+    struct axis2_disp
     {
         /** operations of dispatcher struct */
         axis2_disp_ops_t *ops;
-    }
-    axis2_disp_t;
+    };
 
 
     /**

Modified: webservices/axis2/trunk/c/modules/core/engine/disp.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/disp.c?rev=428387&r1=428386&r2=428387&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/disp.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/disp.c Thu Aug  3 05:27:09 2006
@@ -39,11 +39,11 @@
 #define AXIS2_INTF_TO_IMPL(disp) ((axis2_disp_impl_t *)disp)
 
 axis2_handler_t* AXIS2_CALL 
-axis2_disp_get_base(struct axis2_disp *disp, 
+axis2_disp_get_base(const axis2_disp_t *disp, 
                     const axis2_env_t *env);
                     
 axis2_qname_t* AXIS2_CALL 
-axis2_disp_get_qname(struct axis2_disp *disp, 
+axis2_disp_get_qname(const axis2_disp_t *disp, 
                      const axis2_env_t *env);
                      
 axis2_status_t AXIS2_CALL 
@@ -151,7 +151,7 @@
 }
 
 axis2_handler_t* AXIS2_CALL 
-axis2_disp_get_base(struct axis2_disp *disp, 
+axis2_disp_get_base(const axis2_disp_t *disp, 
                     const axis2_env_t *env)
 {
     AXIS2_ENV_CHECK(env, NULL);
@@ -159,7 +159,7 @@
 }
 
 axis2_qname_t* AXIS2_CALL 
-axis2_disp_get_qname(struct axis2_disp *disp, 
+axis2_disp_get_qname(const axis2_disp_t *disp, 
                      const axis2_env_t *env)
 {
     AXIS2_ENV_CHECK(env, NULL);



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