From 381f5eb5129635741d5d7458356061d5b472c0d2 Mon Sep 17 00:00:00 2001 From: "Unknown (aruna1)" <dev-null@apache.org> Date: Tue, 18 Jan 2000 21:32:21 +0000 Subject: [PATCH] XMLCh assigned to wchar_t git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@171582 13f79535-47bb-0310-9956-ffa450edef68 --- src/util/Compilers/HPCCDefs.hpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/util/Compilers/HPCCDefs.hpp b/src/util/Compilers/HPCCDefs.hpp index 812e15d87..710b3cda2 100644 --- a/src/util/Compilers/HPCCDefs.hpp +++ b/src/util/Compilers/HPCCDefs.hpp @@ -56,6 +56,9 @@ /** * $Log$ + * Revision 1.6 2000/01/18 21:32:21 aruna1 + * XMLCh assigned to wchar_t + * * Revision 1.5 1999/12/14 23:53:25 rahulj * Removed the offending Ctrl-M's from the commit message * logs which was giving packaging problems. @@ -99,7 +102,11 @@ // --------------------------------------------------------------------------- // Define our version of the XML character // --------------------------------------------------------------------------- -typedef unsigned short XMLCh; +#ifndef INCLUDE_THIS_FILE +#define INCLUDE_THIS_FILE +#include <wchar.h> +#endif +typedef wchar_t XMLCh; typedef unsigned short UTF16Ch; -- GitLab