You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by Feng Xia <FX...@netpcs.com> on 2000/09/27 20:59:22 UTC

L" " string

in XercesDefs.hpp,
// -------------------------------------------------------------------------
--
//  According to whether the compiler suports L"" type strings, we define
//  the XMLStrL() macro one way or another.
// -------------------------------------------------------------------------
--
#if defined(XML_LSTRSUPPORT)
#define XMLStrL(str)  L##str
#else
#define XMLStrL(str)  str
#endif

I don't understand what is L"" type strings. Could somebody give me some
hint?

Thanks,
Feng