Skip to content
Snippets Groups Projects
Commit 28b9251c authored by Rahul Jain's avatar Rahul Jain
Browse files

Works with latest revision of ICU which provides a hard

linked data DLL. i.e. icudata.dll will be loaded when xerces-c is
loaded.


git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172105 13f79535-47bb-0310-9956-ffa450edef68
parent a0378633
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,11 @@
/*
* $Log$
* Revision 1.19 2000/05/11 23:13:31 rahulj
* Works with latest revision of ICU which provides a hard
* linked data DLL. i.e. icudata.dll will be loaded when xerces-c is
* loaded.
*
* Revision 1.18 2000/04/12 18:41:28 roddey
* Fixed a small 'one off' problem in the calls to ICU.
*
......@@ -139,6 +144,13 @@
#include <unicode/ucnv.h>
#include <unicode/ucnv_err.h>
#include <unicode/ustring.h>
#include <unicode/udata.h>
#if !defined(XML_OS390) && !defined(XML_AS400) && !defined(XML_HPUX)
// Forward reference the symbol which points to the ICU converter data.
extern "C" const uint8_t U_IMPORT icudata_dat[];
#endif
......@@ -199,6 +211,17 @@ static XMLCh* convertToXMLCh(const UChar* const toConvert)
// ---------------------------------------------------------------------------
ICUTransService::ICUTransService()
{
#if !defined(XML_OS390) && !defined(XML_AS400) && !defined(XML_HPUX)
// Pass the location of the converter data to ICU. By doing so, we are
// forcing the load of ICU converter data DLL, after the Xerces-C DLL is
// loaded. This implies that Xerces-C, now has to explicitly link with the
// ICU converter dll. However, the advantage is that we no longer depend
// on the code which does demand dynamic loading of DLL's. The demand
// loading is highly system dependent and was a constant source of support
// calls.
UErrorCode uerr = U_ZERO_ERROR;
udata_setCommonData((void *) icudata_dat, &uerr);
#endif
}
ICUTransService::~ICUTransService()
......
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