Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 38549 invoked from network); 5 Oct 2007 05:38:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Oct 2007 05:38:18 -0000 Received: (qmail 62683 invoked by uid 500); 5 Oct 2007 05:38:06 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 62574 invoked by uid 500); 5 Oct 2007 05:38:06 -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 62563 invoked by uid 500); 5 Oct 2007 05:38:06 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 62560 invoked by uid 99); 5 Oct 2007 05:38:06 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Oct 2007 22:38:06 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 Oct 2007 05:38:17 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1B8611A9832; Thu, 4 Oct 2007 22:37:27 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r582081 - /webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_iis_worker.h Date: Fri, 05 Oct 2007 05:37:26 -0000 To: axis2-cvs@ws.apache.org From: dushshantha@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071005053727.1B8611A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dushshantha Date: Thu Oct 4 22:37:26 2007 New Revision: 582081 URL: http://svn.apache.org/viewvc?rev=582081&view=rev Log: fixed some of the build errors in iis module Modified: webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_iis_worker.h Modified: webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_iis_worker.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_iis_worker.h?rev=582081&r1=582080&r2=582081&view=diff ============================================================================== --- webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_iis_worker.h (original) +++ webservices/axis2/trunk/c/src/core/transport/http/server/IIS/axis2_iis_worker.h Thu Oct 4 22:37:26 2007 @@ -1,4 +1,4 @@ - + /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -28,33 +28,41 @@ extern "C" { -#endif /* */ - typedef struct axis2_iis_worker axis2_iis_worker_t; - int AXIS2_CALL - axis2_iis_worker_process_request( - axis2_iis_worker_t * iis_worker, - const axutil_env_t * env, - void *r); - void AXIS2_CALL - axis2_iis_worker_free( - axis2_iis_worker_t * iis_worker, - const axutil_env_t * env); - axis2_iis_worker_t * AXIS2_CALL - axis2_iis_worker_create( - const axutil_env_t * env, - axis2_char_t * repo_path); - +#endif /* + */ + +typedef struct axis2_iis_worker axis2_iis_worker_t; + + +int AXIS2_CALL + axis2_iis_worker_process_request( + axis2_iis_worker_t * iis_worker, + const axutil_env_t * env, + void *r); + + +void AXIS2_CALL + axis2_iis_worker_free( + axis2_iis_worker_t * iis_worker, + const axutil_env_t * env); + + +axis2_iis_worker_t * AXIS2_CALL + axis2_iis_worker_create( + const axutil_env_t * env, + axis2_char_t * repo_path); + + + #define AXIS2_IIS_WORKER_PROCESS_REQUEST(iis_worker, env, request) \ - axis2_iis_worker_process_request( - \ iis_worker, - env, - request) + axis2_iis_worker_process_request( \ + iis_worker, env, request) #define AXIS2_IIS_WORKER_FREE(iis_worker, env) \ - axis2_iis_worker_free( - iis_worker, - env) + axis2_iis_worker_free( iis_worker, env) + #ifdef __cplusplus } -#endif /* */ +#endif /* + */ #endif /* AXIS2_IIS_WORKER_H */ --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org