GCCDefs.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:7k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: GCCDefs.hpp,v $
  58.  * Revision 1.14  2001/07/06 17:11:58  tng
  59.  * Automatic build of single-threaded library.  By Martin Kalen.
  60.  *
  61.  * Revision 1.13  2001/03/02 20:52:58  knoaman
  62.  * Schema: Regular expression - misc. updates for error messages,
  63.  * and additions of new functions to XMLString class.
  64.  *
  65.  * Revision 1.12  2001/02/08 14:15:33  tng
  66.  * enable COMPAQ Tru64 UNIX machines to build xerces-c with gcc (tested using COMPAQ gcc version2.95.2 19991024 (release) and Tru64 V5.0 1094).  Added by Martin Kalen.
  67.  *
  68.  * Revision 1.11  2000/10/17 00:52:00  andyh
  69.  * Change XMLCh back to unsigned short on all platforms.
  70.  *
  71.  * Revision 1.10  2000/03/09 01:22:29  abagchi
  72.  * Added header guards to include inlines only once
  73.  *
  74.  * Revision 1.9  2000/03/02 19:55:08  roddey
  75.  * This checkin includes many changes done while waiting for the
  76.  * 1.1.0 code to be finished. I can't list them all here, but a list is
  77.  * available elsewhere.
  78.  *
  79.  * Revision 1.8  2000/02/22 01:00:48  aruna1
  80.  * GNUGDefs references removed. Now only GCCDefs is used instead
  81.  *
  82.  * Revision 1.7  2000/02/06 07:48:17  rahulj
  83.  * Year 2K copyright swat.
  84.  *
  85.  * Revision 1.6  2000/01/14 02:08:29  abagchi
  86.  * Sorry GCC does not support long strings
  87.  *
  88.  * Revision 1.5  2000/01/14 01:55:09  abagchi
  89.  * Added XML_LSTRSUPPORT
  90.  *
  91.  * Revision 1.4  2000/01/13 01:39:11  abagchi
  92.  * Changed unsigned short to wchar_t for XMLCh
  93.  *
  94.  * Revision 1.3  1999/11/12 20:36:54  rahulj
  95.  * Changed library name to xerces-c.lib.
  96.  *
  97.  * Revision 1.1.1.1  1999/11/09 01:07:32  twl
  98.  * Initial checkin
  99.  *
  100.  * Revision 1.2  1999/11/08 20:45:23  rahul
  101.  * Swat for adding in Product name and CVS comment log variable.
  102.  *
  103.  */
  104. #if !defined(GCCDEFS_HPP)
  105. #define GCCDEFS_HPP
  106. // ---------------------------------------------------------------------------
  107. // Define these away for this platform
  108. // ---------------------------------------------------------------------------
  109. #define PLATFORM_EXPORT
  110. #define PLATFORM_IMPORT
  111. // ---------------------------------------------------------------------------
  112. // Indicate that we support native bools
  113. // ---------------------------------------------------------------------------
  114. // #define NO_NATIVE_BOOL
  115. // ---------------------------------------------------------------------------
  116. //  GCC does not support "L" for long strings. So we do nothing.
  117. // ---------------------------------------------------------------------------
  118. // #define XML_LSTRSUPPORT
  119. // ---------------------------------------------------------------------------
  120. //  Define our version of the XML character
  121. // ---------------------------------------------------------------------------
  122. // typedef wchar_t XMLCh; // is another option, now considered old
  123. typedef unsigned short XMLCh;
  124. // ---------------------------------------------------------------------------
  125. //  Define unsigned 16 and 32 bits integers
  126. // ---------------------------------------------------------------------------
  127. typedef unsigned short  XMLUInt16;
  128. typedef unsigned int    XMLUInt32;
  129. // ---------------------------------------------------------------------------
  130. //  Define signed 32 bits integers
  131. // ---------------------------------------------------------------------------
  132. typedef int             XMLInt32;
  133. // ---------------------------------------------------------------------------
  134. //  Force on the Xerces debug token if it was on in the build environment
  135. // ---------------------------------------------------------------------------
  136. #if 0
  137. #define XERCES_DEBUG
  138. #endif
  139. // ---------------------------------------------------------------------------
  140. //  Provide some common string ops that are different/notavail on GCC
  141. // ---------------------------------------------------------------------------
  142. #if !defined(XML_TRU64) && !defined(XML_GCC)
  143. inline char toupper(const char toUpper)
  144. {
  145.     if ((toUpper >= 'a') && (toUpper <= 'z'))
  146.         return char(toUpper - 0x20);
  147.     return toUpper;
  148. }
  149. inline char tolower(const char toLower)
  150. {
  151.     if ((toLower >= 'A') && (toLower <= 'Z'))
  152.         return char(toLower + 0x20);
  153.     return toLower;
  154. }
  155. #endif
  156. int stricmp(const char* const str1, const char* const  str2);
  157. int strnicmp(const char* const str1, const char* const  str2, const unsigned int count);
  158. // ---------------------------------------------------------------------------
  159. //  The name of the DLL that is built by the GCC version of the system.
  160. // ---------------------------------------------------------------------------
  161. const char* const Xerces_DLLName = "libxerces-c";
  162. #endif  // GCCDEFS_HPP