Skip to content
Snippets Groups Projects
Commit a92b9ca2 authored by Alberto Massari's avatar Alberto Massari
Browse files

Regenerate

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@553906 13f79535-47bb-0310-9956-ffa450edef68
parent 8c4297b1
No related branches found
No related tags found
No related merge requests found
......@@ -292,12 +292,18 @@
/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
/* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT
/* The size of `wchar_t', as computed by sizeof. */
#undef SIZEOF_WCHAR_T
/* The size of `__int64', as computed by sizeof. */
#undef SIZEOF___INT64
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
......@@ -361,6 +367,9 @@
/* An appropriate unsigned 32 bit integer type */
#undef XERCES_U32BIT_INT
/* An appropriate unsigned 64 bit integer type */
#undef XERCES_U64BIT_INT
/* Define to use the MacOS AtomicOp mgr */
#undef XERCES_USE_ATOMICOPMGR_MACOS
......
This diff is collapsed.
......@@ -50,6 +50,8 @@
#define XERCES_U16BIT_INT unsigned short
#define XERCES_S32BIT_INT INT32
#define XERCES_U32BIT_INT UINT32
// REVISIT: double check if Borland supports 64 bit integers
#define XERCES_U64BIT_INT UINT32
#define XERCES_XMLCH_T wchar_t
......@@ -99,7 +101,7 @@ typedef XERCES_S32BIT_INT XMLInt32;
// ---------------------------------------------------------------------------
// XMLFilePos is the type used to represent a file position.
// ---------------------------------------------------------------------------
typedef XERCES_U32BIT_INT XMLFilePos;
typedef XERCES_U64BIT_INT XMLFilePos;
// ---------------------------------------------------------------------------
......
......@@ -53,6 +53,7 @@
#undef XERCES_S32BIT_INT
#undef XERCES_U16BIT_INT
#undef XERCES_U32BIT_INT
#undef XERCES_U64BIT_INT
#undef XERCES_XMLCH_T
#undef XERCES_SIZE_T
#undef XERCES_SSIZE_T
......@@ -104,7 +105,7 @@ typedef XERCES_S32BIT_INT XMLInt32;
// ---------------------------------------------------------------------------
// XMLFilePos is the type used to represent a file position.
// ---------------------------------------------------------------------------
typedef XERCES_U32BIT_INT XMLFilePos;
typedef XERCES_U64BIT_INT XMLFilePos;
// ---------------------------------------------------------------------------
......
......@@ -54,6 +54,7 @@
#define XERCES_U16BIT_INT unsigned short
#define XERCES_S32BIT_INT INT32
#define XERCES_U32BIT_INT UINT32
#define XERCES_U64BIT_INT UINT64
#ifdef _NATIVE_WCHAR_T_DEFINED
#define XERCES_XMLCH_T wchar_t
......@@ -106,7 +107,7 @@ typedef XERCES_S32BIT_INT XMLInt32;
// ---------------------------------------------------------------------------
// XMLFilePos is the type used to represent a file position.
// ---------------------------------------------------------------------------
typedef XERCES_U32BIT_INT XMLFilePos;
typedef XERCES_U64BIT_INT XMLFilePos;
// ---------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment