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 na...@apache.org on 2006/05/22 05:39:56 UTC

svn commit: r408558 - in /webservices/axis/trunk/c/include/axis: GDefine.h GDefine.hpp

Author: nadiramra
Date: Sun May 21 20:39:56 2006
New Revision: 408558

URL: http://svn.apache.org/viewvc?rev=408558&view=rev
Log:
C support fixes/enhancements. Define a new return code for indicating exception has occurred.

Modified:
    webservices/axis/trunk/c/include/axis/GDefine.h
    webservices/axis/trunk/c/include/axis/GDefine.hpp

Modified: webservices/axis/trunk/c/include/axis/GDefine.h
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/include/axis/GDefine.h?rev=408558&r1=408557&r2=408558&view=diff
==============================================================================
--- webservices/axis/trunk/c/include/axis/GDefine.h (original)
+++ webservices/axis/trunk/c/include/axis/GDefine.h Sun May 21 20:39:56 2006
@@ -52,6 +52,11 @@
     AXISC_FAIL = -1, 
     
     /**
+     * Failure - only for C binding, not in C++
+     */
+    AXISC_EXCEPTION = -2, 
+    
+    /**
      * Object already exists
      */
     AXISC_OBJECT_ALREADY_EXISTS=1,

Modified: webservices/axis/trunk/c/include/axis/GDefine.hpp
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/include/axis/GDefine.hpp?rev=408558&r1=408557&r2=408558&view=diff
==============================================================================
--- webservices/axis/trunk/c/include/axis/GDefine.hpp (original)
+++ webservices/axis/trunk/c/include/axis/GDefine.hpp Sun May 21 20:39:56 2006
@@ -71,6 +71,12 @@
      * Failure
      */
     AXIS_FAIL = -1, 
+
+    /**
+     * Failure - only for C binding, not used in C++,
+     * but defined in order to reserve.
+     */
+    AXIS_EXCEPTION = -2, 
     
     /**
      * Object already exists



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