/* src/xercesc/util/Xerces_autoconf_config.hpp. Generated from Xerces_autoconf_config.hpp.in by configure. */ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * $Id$ */ // // There are two primary xerces configuration header files: // // Xerces_autoconf_config.hpp // // For configuration of items that must be accessable // through public headers. This file has limited information // and carefully works to avoid collision of macro names, etc. // // This file is included by XercesDefs.h. In the event // of a non-configured platform, a similar header specific // to the platform will be included instead. // // config.h // // Generalized autoconf header file, with much more // information, used to supply configuration information // for use in implementation files. // // For autoconf based builds, this header is configured from by the configure // script from the .in template file of the same name. #ifndef XERCES_AUTOCONFIG_CONFIG_HPP #define XERCES_AUTOCONFIG_CONFIG_HPP // --------------------------------------------------------------------------- // These defines are set by configure as appropriate for the platform. // --------------------------------------------------------------------------- #define XERCES_AUTOCONF 1 #define XERCES_HAVE_CSTDINT 1 #define XERCES_HAVE_STDINT_H 1 #define XERCES_HAVE_SYS_TYPES_H 1 #define XERCES_HAVE_INTTYPES_H 1 /* #undef XERCES_HAVE_INTRIN_H */ #define XERCES_HAVE_EMMINTRIN_H 1 /* #undef XERCES_INCLUDE_WCHAR_H */ #define XERCES_S16BIT_INT int16_t #define XERCES_S32BIT_INT int32_t #define XERCES_S64BIT_INT int64_t #define XERCES_U16BIT_INT uint16_t #define XERCES_U32BIT_INT uint32_t #define XERCES_U64BIT_INT uint64_t #define XERCES_XMLCH_T char16_t #define XERCES_SIZE_T size_t #define XERCES_SSIZE_T ssize_t #define XERCES_HAS_CPP_NAMESPACE 1 #define XERCES_STD_NAMESPACE 1 #define XERCES_NEW_IOSTREAMS 1 /* #undef XERCES_NO_NATIVE_BOOL */ #define XERCES_LSTRSUPPORT 1 /* #undef XERCES_HAVE_CPUID_INTRINSIC */ #define XERCES_HAVE_SSE2_INTRINSIC 1 #define XERCES_HAVE_GETCPUID 1 #define XERCES_PLATFORM_EXPORT #define XERCES_PLATFORM_IMPORT #define XERCES_TEMPLATE_EXTERN extern /* #undef XERCES_NO_MATCHING_DELETE_OPERATOR */ // --------------------------------------------------------------------------- // Include standard headers, if available, that we may rely on below. // --------------------------------------------------------------------------- #if defined(__cplusplus) && XERCES_HAVE_CSTDINT # include #elif XERCES_HAVE_STDINT_H # if defined(__cplusplus) # define __STDC_LIMIT_MACROS # endif # include #endif #if XERCES_HAVE_INTTYPES_H # include #endif #if XERCES_HAVE_SYS_TYPES_H # include #endif #if XERCES_INCLUDE_WCHAR_H # include #endif // --------------------------------------------------------------------------- // XMLSize_t is the unsigned integral type. // --------------------------------------------------------------------------- typedef XERCES_SIZE_T XMLSize_t; typedef XERCES_SSIZE_T XMLSSize_t; #define XERCES_SIZE_MAX SIZE_MAX #define XERCES_SSIZE_MAX SSIZE_MAX // --------------------------------------------------------------------------- // Define our version of the XML character // --------------------------------------------------------------------------- typedef XERCES_XMLCH_T XMLCh; // --------------------------------------------------------------------------- // Define unsigned 16, 32, and 64 bit integers // --------------------------------------------------------------------------- typedef XERCES_U16BIT_INT XMLUInt16; typedef XERCES_U32BIT_INT XMLUInt32; typedef XERCES_U64BIT_INT XMLUInt64; // --------------------------------------------------------------------------- // Define signed 16, 32, and 64 bit integers // --------------------------------------------------------------------------- typedef XERCES_S16BIT_INT XMLInt16; typedef XERCES_S32BIT_INT XMLInt32; typedef XERCES_S64BIT_INT XMLInt64; // --------------------------------------------------------------------------- // XMLFilePos is the type used to represent a file position. // --------------------------------------------------------------------------- typedef XMLUInt64 XMLFilePos; // --------------------------------------------------------------------------- // XMLFileLoc is the type used to represent a file location (line/column). // --------------------------------------------------------------------------- typedef XMLUInt64 XMLFileLoc; // --------------------------------------------------------------------------- // Force on the Xerces debug token if it is on in the build environment // --------------------------------------------------------------------------- #if defined(_DEBUG) #define XERCES_DEBUG #endif #endif