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 da...@apache.org on 2005/10/20 12:17:18 UTC

svn commit: r326878 - /webservices/axis2/trunk/c/include/axis2_defines.h

Author: damitha
Date: Thu Oct 20 03:17:08 2005
New Revision: 326878

URL: http://svn.apache.org/viewcvs?rev=326878&view=rev
Log:
changed the names

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

Modified: webservices/axis2/trunk/c/include/axis2_defines.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_defines.h?rev=326878&r1=326877&r2=326878&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_defines.h (original)
+++ webservices/axis2/trunk/c/include/axis2_defines.h Thu Oct 20 03:17:08 2005
@@ -22,18 +22,18 @@
 
 /* Calling convention for exposed functions */
 #if defined(WIN32) 
-#define AXISC_STORAGE_CLASS_INFO __declspec(dllexport)
+#define AXIS2_STORAGE_CLASS_INFO __declspec(dllexport)
 #else
-#define AXISC_STORAGE_CLASS_INFO 
+#define AXIS2_STORAGE_CLASS_INFO 
 #endif
 
 #if defined(__GNUC__)
-#define AXISCCALL __attribute__((cdecl))
+#define AXIS2_CALL __attribute__((cdecl))
 #else /* unix or win32 */
 #if defined(__unix)
-#define AXISCCALL
+#define AXIS2_CALL
 #else
-#define AXISCCALL __stdcall
+#define AXIS2_CALL __stdcall
 #endif
 #endif