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 sa...@apache.org on 2006/09/20 06:31:41 UTC

svn commit: r448057 - in /webservices/axis2/trunk/c: include/axis2_callback.h modules/core/clientapi/callback.c

Author: samisa
Date: Tue Sep 19 21:31:40 2006
New Revision: 448057

URL: http://svn.apache.org/viewvc?view=rev&rev=448057
Log:
Fixed callback prefix

Modified:
    webservices/axis2/trunk/c/include/axis2_callback.h
    webservices/axis2/trunk/c/modules/core/clientapi/callback.c

Modified: webservices/axis2/trunk/c/include/axis2_callback.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_callback.h?view=diff&rev=448057&r1=448056&r2=448057
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_callback.h (original)
+++ webservices/axis2/trunk/c/include/axis2_callback.h Tue Sep 19 21:31:40 2006
@@ -48,11 +48,11 @@
     typedef struct axis2_callback axis2_callback_t;
     /** Type name for function pointer to be called on complete of callback  */
     typedef axis2_status_t (AXIS2_CALL *
-            on_complete_func_ptr)(axis2_callback_t *,
+            axis2_on_complete_func_ptr)(axis2_callback_t *,
                     const axis2_env_t *);
     /** Type name for function pointer to be called on error of callback  */
     typedef axis2_status_t (AXIS2_CALL *
-            on_error_func_ptr)(axis2_callback_t *,
+            axis2_on_error_func_ptr)(axis2_callback_t *,
                     const axis2_env_t *, int);
 
     /**
@@ -228,7 +228,7 @@
         void (AXIS2_CALL *
                 set_on_complete)(
                     axis2_callback_t *callback,
-                    on_complete_func_ptr f);
+                    axis2_on_complete_func_ptr f);
 
         /**
          * Sets the on error callback function.
@@ -238,7 +238,7 @@
         void (AXIS2_CALL *
                 set_on_error)(
                     axis2_callback_t *callback,
-                    on_error_func_ptr f);
+                    axis2_on_error_func_ptr f);
 
         /**
          * Frees callback struct.

Modified: webservices/axis2/trunk/c/modules/core/clientapi/callback.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/callback.c?view=diff&rev=448057&r1=448056&r2=448057
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/callback.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/callback.c Tue Sep 19 21:31:40 2006
@@ -101,12 +101,12 @@
 void AXIS2_CALL
 axis2_callback_set_on_complete(
     axis2_callback_t *callback,
-    on_complete_func_ptr f);
+    axis2_on_complete_func_ptr f);
 
 void AXIS2_CALL
 axis2_callback_set_on_error(
     axis2_callback_t *callback,
-    on_error_func_ptr f);
+    axis2_on_error_func_ptr f);
 
 axis2_status_t AXIS2_CALL
 axis2_callback_set_data(
@@ -315,7 +315,7 @@
 void AXIS2_CALL
 axis2_callback_set_on_complete(
     axis2_callback_t *callback,
-    on_complete_func_ptr func)
+    axis2_on_complete_func_ptr func)
 {
     callback->ops->on_complete = func;
 }
@@ -323,7 +323,7 @@
 void AXIS2_CALL
 axis2_callback_set_on_error(
     axis2_callback_t *callback,
-    on_error_func_ptr func)
+    axis2_on_error_func_ptr func)
 {
     callback->ops->on_error = func;
 }



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