Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 63523 invoked from network); 9 Mar 2006 23:49:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Mar 2006 23:49:46 -0000 Received: (qmail 11089 invoked by uid 500); 9 Mar 2006 23:49:44 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 11013 invoked by uid 500); 9 Mar 2006 23:49:43 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 11002 invoked by uid 99); 9 Mar 2006 23:49:43 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Mar 2006 15:49:43 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 09 Mar 2006 15:49:42 -0800 Received: (qmail 63292 invoked by uid 65534); 9 Mar 2006 23:49:22 -0000 Message-ID: <20060309234922.63291.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r384647 - /webservices/axis/trunk/c/include/axis/Axis.h Date: Thu, 09 Mar 2006 23:49:21 -0000 To: axis-cvs@ws.apache.org From: prestonf@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: prestonf Date: Thu Mar 9 15:49:21 2006 New Revision: 384647 URL: http://svn.apache.org/viewcvs?rev=384647&view=rev Log: Tried to use stdcall, but Linux does not support it. Has now been changed to 'AXISCALL' which is defined in GDefine.hpp As follows: /*replaced stdcall with cdecl to make it work on some platforms with older libraries - Samisa*/ #define AXISCALL __attribute__((cdecl)) #else /* unix or win32 */ #if defined(__unix) #define AXISCALL #else #define AXISCALL __stdcall #endif Modified: webservices/axis/trunk/c/include/axis/Axis.h Modified: webservices/axis/trunk/c/include/axis/Axis.h URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/include/axis/Axis.h?rev=384647&r1=384646&r2=384647&view=diff ============================================================================== --- webservices/axis/trunk/c/include/axis/Axis.h (original) +++ webservices/axis/trunk/c/include/axis/Axis.h Thu Mar 9 15:49:21 2006 @@ -84,7 +84,7 @@ // Create prototype for globalExceptionHandler. This is to get round the // problems introduced by trace which cannot handle in-line prototyping. -typedef void * __stdcall GlobalExceptionHandlerPrototype( int errorCode, const char * errorString); +typedef void * AXISCALL GlobalExceptionHandlerPrototype( int errorCode, const char * errorString); AXISC_STORAGE_CLASS_INFO void axiscRegisterExceptionHandler( void * fp);