summaryrefslogtreecommitdiff
path: root/cppe/src
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src')
-rw-r--r--cppe/src/IceE/BasicStream.cpp4
-rw-r--r--cppe/src/IceE/IdentityUtil.cpp90
-rw-r--r--cppe/src/IceE/Instance.cpp10
-rw-r--r--cppe/src/IceE/Makefile1
-rw-r--r--cppe/src/IceE/Reference.cpp10
-rwxr-xr-xcppe/src/IceE/ice.dsp4
-rwxr-xr-xcppe/src/IceE/ice.vcp163
-rwxr-xr-xcppe/src/IceE/ice_CE.vcproj78
-rw-r--r--cppe/src/IceEC/Makefile1
-rwxr-xr-xcppe/src/IceEC/icec.dsp8
-rwxr-xr-xcppe/src/IceEC/icec.vcp471
-rwxr-xr-xcppe/src/IceEC/icec_CE.vcproj78
12 files changed, 905 insertions, 13 deletions
diff --git a/cppe/src/IceE/BasicStream.cpp b/cppe/src/IceE/BasicStream.cpp
index e0657d2dd6e..3993c257f00 100644
--- a/cppe/src/IceE/BasicStream.cpp
+++ b/cppe/src/IceE/BasicStream.cpp
@@ -1303,7 +1303,7 @@ IceInternal::BasicStream::writeConverted(const string& v)
writeSize(guessedSize); // writeSize() only writes the size; it does not reserve any buffer space.
size_t firstIndex = b.size();
- UTF8BufferI buffer(*this);
+ StreamUTF8BufferI buffer(*this);
Byte* lastByte = _stringConverter->toUTF8(v.data(), v.data() + v.size(), buffer);
if(lastByte != b.end())
@@ -1404,7 +1404,7 @@ IceInternal::BasicStream::write(const wstring& v)
writeSize(guessedSize); // writeSize() only writes the size; it does not reserve any buffer space.
size_t firstIndex = b.size();
- UTF8BufferI buffer(*this);
+ StreamUTF8BufferI buffer(*this);
Byte* lastByte = _wstringConverter->toUTF8(v.data(), v.data() + v.size(), buffer);
if(lastByte != b.end())
diff --git a/cppe/src/IceE/IdentityUtil.cpp b/cppe/src/IceE/IdentityUtil.cpp
new file mode 100644
index 00000000000..54b5f9e8ca2
--- /dev/null
+++ b/cppe/src/IceE/IdentityUtil.cpp
@@ -0,0 +1,90 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice-E is licensed to you under the terms described in the
+// ICEE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#include <IceE/IdentityUtil.h>
+#include <IceE/LocalException.h>
+#include <IceE/StringUtil.h>
+
+using namespace std;
+using namespace Ice;
+using namespace IceInternal;
+
+Identity
+Ice::stringToIdentity(const string& s)
+{
+ Identity ident;
+
+ //
+ // Find unescaped separator.
+ //
+ string::size_type slash = string::npos, pos = 0;
+ while((pos = s.find('/', pos)) != string::npos)
+ {
+ if(pos == 0 || s[pos - 1] != '\\')
+ {
+ if(slash == string::npos)
+ {
+ slash = pos;
+ }
+ else
+ {
+ //
+ // Extra unescaped slash found.
+ //
+ IdentityParseException ex(__FILE__, __LINE__);
+ ex.str = s;
+ throw ex;
+ }
+ }
+ pos++;
+ }
+
+ if(slash == string::npos)
+ {
+ if(!IceUtil::unescapeString(s, 0, s.size(), ident.name))
+ {
+ IdentityParseException ex(__FILE__, __LINE__);
+ ex.str = s;
+ throw ex;
+ }
+ }
+ else
+ {
+ if(!IceUtil::unescapeString(s, 0, slash, ident.category))
+ {
+ IdentityParseException ex(__FILE__, __LINE__);
+ ex.str = s;
+ throw ex;
+ }
+ if(slash + 1 < s.size())
+ {
+ if(!IceUtil::unescapeString(s, slash + 1, s.size(), ident.name))
+ {
+ IdentityParseException ex(__FILE__, __LINE__);
+ ex.str = s;
+ throw ex;
+ }
+ }
+ }
+
+ return ident;
+}
+
+string
+Ice::identityToString(const Identity& ident)
+{
+ if(ident.category.empty())
+ {
+ return IceUtil::escapeString(ident.name, "/");
+ }
+ else
+ {
+ return IceUtil::escapeString(ident.category, "/") + '/' + IceUtil::escapeString(ident.name, "/");
+ }
+}
diff --git a/cppe/src/IceE/Instance.cpp b/cppe/src/IceE/Instance.cpp
index 9dc797bef7c..035e8b4cc4d 100644
--- a/cppe/src/IceE/Instance.cpp
+++ b/cppe/src/IceE/Instance.cpp
@@ -307,12 +307,12 @@ IceInternal::Instance::identityToString(const Identity& ident) const
UTF8BufferI buffer;
Byte* last = _initData.stringConverter->toUTF8(ident.name.data(), ident.name.data() + ident.name.size(),
buffer);
- name = string(buffer.getBuffer(), last);
+ name = string(reinterpret_cast<const char*>(buffer.getBuffer()), last - buffer.getBuffer());
buffer.reset();
last = _initData.stringConverter->toUTF8(ident.category.data(), ident.category.data() + ident.category.size(),
buffer);
- category = string(buffer.getBuffer(), last);
+ category = string(reinterpret_cast<const char*>(buffer.getBuffer()), last - buffer.getBuffer());
}
if(category.empty())
@@ -736,10 +736,8 @@ IceInternal::UTF8BufferI::getMoreBytes(size_t howMany, Byte* firstUnused)
}
else
{
- if(firstUnused != 0)
- {
- _offset = firstUnused - _buffer;
- }
+ assert(firstUnused != 0);
+ _offset = firstUnused - _buffer;
_buffer = (Byte*)realloc(_buffer, _offset + howMany);
}
diff --git a/cppe/src/IceE/Makefile b/cppe/src/IceE/Makefile
index 545da4395c1..c1802b6d8c2 100644
--- a/cppe/src/IceE/Makefile
+++ b/cppe/src/IceE/Makefile
@@ -41,6 +41,7 @@ LOCAL_OBJS = BasicStream.o \
FactoryTable.o \
FactoryTableDef.o \
Identity.o \
+ IdentityUtil.o \
Incoming.o \
IncomingConnectionFactory.o \
Initialize.o \
diff --git a/cppe/src/IceE/Reference.cpp b/cppe/src/IceE/Reference.cpp
index 2fafa0791b4..d8a172d7636 100644
--- a/cppe/src/IceE/Reference.cpp
+++ b/cppe/src/IceE/Reference.cpp
@@ -184,7 +184,7 @@ IceInternal::Reference::toString() const
// the identity string in quotes.
//
string id = _instance->identityToString(_identity);
- if(id.find_first_of(" \t\n\r:@") != string::npos)
+ if(id.find_first_of(" :@") != string::npos)
{
s += "\"";
s += id;
@@ -210,10 +210,10 @@ IceInternal::Reference::toString() const
UTF8BufferI buffer;
Byte* last =
_instance->initializationData().stringConverter->toUTF8(fs.data(), fs.data() + fs.size(), buffer);
- fs = string(buffer.getBuffer(), last);
+ fs = string(reinterpret_cast<const char*>(buffer.getBuffer()), last - buffer.getBuffer());
}
fs = IceUtil::escapeString(fs, "");
- if(fs.find_first_of(" \t\n\r:@") != string::npos)
+ if(fs.find_first_of(" :@") != string::npos)
{
s += "\"";
s += fs;
@@ -945,10 +945,10 @@ IceInternal::IndirectReference::toString() const
{
UTF8BufferI buffer;
Byte* last = getInstance()->initializationData().stringConverter->toUTF8(a.data(), a.data() + a.size(), buffer);
- a = string(buffer.getBuffer(), last);
+ a = string(reinterpret_cast<const char*>(buffer.getBuffer()), last - buffer.getBuffer());
}
a = IceUtil::escapeString(a, "");
- if(a.find_first_of(" \t\n\r") != string::npos)
+ if(a.find_first_of(" ") != string::npos)
{
result.append("\"");
result.append(a);
diff --git a/cppe/src/IceE/ice.dsp b/cppe/src/IceE/ice.dsp
index c8f4fa0df23..73456202b47 100755
--- a/cppe/src/IceE/ice.dsp
+++ b/cppe/src/IceE/ice.dsp
@@ -250,6 +250,10 @@ SOURCE=.\Identity.cpp
# End Source File
# Begin Source File
+SOURCE=.\IdentityUtil.cpp
+# End Source File
+# Begin Source File
+
SOURCE=.\Incoming.cpp
# End Source File
# Begin Source File
diff --git a/cppe/src/IceE/ice.vcp b/cppe/src/IceE/ice.vcp
index a00acbead18..6d67f0b278e 100755
--- a/cppe/src/IceE/ice.vcp
+++ b/cppe/src/IceE/ice.vcp
@@ -3875,6 +3875,109 @@ DEP_CPP_IDENT=\
# End Source File
# Begin Source File
+SOURCE=.\IdentityUtil.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=.\Incoming.cpp
!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
@@ -3894,6 +3997,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -3950,6 +4054,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -4006,6 +4111,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -4062,6 +4168,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -4118,6 +4225,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -4174,6 +4282,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -4230,6 +4339,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -4286,6 +4396,7 @@ DEP_CPP_INCOM=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -5368,6 +5479,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -5380,6 +5492,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -5392,6 +5505,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -5404,6 +5518,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -5416,6 +5531,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -5428,6 +5544,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -5440,6 +5557,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -5452,6 +5570,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
@@ -6067,6 +6186,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -6107,6 +6227,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -6147,6 +6268,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -6187,6 +6309,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -6227,6 +6350,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -6267,6 +6391,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -6307,6 +6432,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -6347,6 +6473,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10041,6 +10168,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10099,6 +10227,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10157,6 +10286,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10215,6 +10345,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10273,6 +10404,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10331,6 +10463,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10389,6 +10522,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10447,6 +10581,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -10508,6 +10643,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10555,6 +10691,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10602,6 +10739,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10649,6 +10787,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10696,6 +10835,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10743,6 +10883,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10790,6 +10931,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -10837,6 +10979,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -11836,6 +11979,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -11865,6 +12009,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -11894,6 +12039,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -11923,6 +12069,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -11952,6 +12099,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -11981,6 +12129,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -12010,6 +12159,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -12039,6 +12189,7 @@ DEP_CPP_SERVA=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\Lock.h"\
@@ -13437,6 +13588,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -13463,6 +13615,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -13489,6 +13642,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -13515,6 +13669,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -13541,6 +13696,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -13567,6 +13723,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -13593,6 +13750,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -13619,6 +13777,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -14563,6 +14722,10 @@ SOURCE=..\..\include\IceE\Identity.h
# End Source File
# Begin Source File
+SOURCE=..\..\include\IceE\IdentityUtil.h
+# End Source File
+# Begin Source File
+
SOURCE=..\..\include\IceE\Incoming.h
# End Source File
# Begin Source File
diff --git a/cppe/src/IceE/ice_CE.vcproj b/cppe/src/IceE/ice_CE.vcproj
index dfcce269c83..2c5c3632031 100755
--- a/cppe/src/IceE/ice_CE.vcproj
+++ b/cppe/src/IceE/ice_CE.vcproj
@@ -1958,6 +1958,80 @@
</FileConfiguration>
</File>
<File
+ RelativePath="IdentityUtil.cpp"
+ >
+ <FileConfiguration
+ Name="Release Static|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Static|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Static|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Static|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
RelativePath="Incoming.cpp"
>
<FileConfiguration
@@ -5153,6 +5227,10 @@
>
</File>
<File
+ RelativePath="..\..\include\IceE\IdentityUtil.h"
+ >
+ </File>
+ <File
RelativePath="..\..\include\IceE\Incoming.h"
>
</File>
diff --git a/cppe/src/IceEC/Makefile b/cppe/src/IceEC/Makefile
index c2501744274..8ce8f81b033 100644
--- a/cppe/src/IceEC/Makefile
+++ b/cppe/src/IceEC/Makefile
@@ -35,6 +35,7 @@ ICE_OBJS = BasicStream.o \
ExceptionBase.o \
FactoryTable.o \
FactoryTableDef.o \
+ IdentityUtil.o \
Initialize.o \
Instance.o \
LocalException.o \
diff --git a/cppe/src/IceEC/icec.dsp b/cppe/src/IceEC/icec.dsp
index 235157042bf..6aa44727402 100755
--- a/cppe/src/IceEC/icec.dsp
+++ b/cppe/src/IceEC/icec.dsp
@@ -242,6 +242,10 @@ SOURCE=.\Identity.cpp
# End Source File
# Begin Source File
+SOURCE=..\IceE\IdentityUtil.cpp
+# End Source File
+# Begin Source File
+
SOURCE=..\IceE\Initialize.cpp
# End Source File
# Begin Source File
@@ -526,6 +530,10 @@ SOURCE=..\..\include\IceE\Identity.h
# End Source File
# Begin Source File
+SOURCE=..\..\include\IceE\IdentityUtil.h
+# End Source File
+# Begin Source File
+
SOURCE=..\..\include\IceE\Incoming.h
# End Source File
# Begin Source File
diff --git a/cppe/src/IceEC/icec.vcp b/cppe/src/IceEC/icec.vcp
index 3714a3fe89a..4759406e9fe 100755
--- a/cppe/src/IceEC/icec.vcp
+++ b/cppe/src/IceEC/icec.vcp
@@ -7616,6 +7616,433 @@ DEP_CPP_IDENT=\
# End Source File
# Begin Source File
+SOURCE=..\IceE\IdentityUtil.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\ConnectionF.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Proxy.h"\
+ "..\..\include\IceE\ProxyF.h"\
+ "..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\ConnectionF.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Proxy.h"\
+ "..\..\include\IceE\ProxyF.h"\
+ "..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
+
+DEP_CPP_IDENTI=\
+ "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\ConnectionF.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Proxy.h"\
+ "..\..\include\IceE\ProxyF.h"\
+ "..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
SOURCE=..\IceE\Initialize.cpp
!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
@@ -8891,6 +9318,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -8921,6 +9349,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -8951,6 +9380,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -9026,6 +9456,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -9101,6 +9532,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -9172,6 +9604,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\SafeStdio.h"\
"..\IceE\Network.h"\
@@ -9188,6 +9621,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -9218,6 +9652,7 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -10301,6 +10736,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -10392,6 +10828,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -10492,6 +10929,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
@@ -10608,6 +11046,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
@@ -10715,6 +11154,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -10806,6 +11246,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocatorInfoF.h"\
@@ -10850,6 +11291,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -10950,6 +11392,7 @@ DEP_CPP_LOCATO=\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
@@ -16570,6 +17013,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
@@ -16675,6 +17119,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
@@ -16786,6 +17231,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -16910,6 +17356,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -17028,6 +17475,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
@@ -17133,6 +17581,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
@@ -17191,6 +17640,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
@@ -17302,6 +17752,7 @@ DEP_CPP_REFER=\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
@@ -17381,6 +17832,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -17474,6 +17926,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -17569,6 +18022,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -17669,6 +18123,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
@@ -17767,6 +18222,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -17860,6 +18316,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocatorInfoF.h"\
@@ -17906,6 +18363,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -18001,6 +18459,7 @@ DEP_CPP_REFERE=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
@@ -23640,6 +24099,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
@@ -23712,6 +24172,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
@@ -23785,6 +24246,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -23864,6 +24326,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -23942,6 +24405,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
@@ -24014,6 +24478,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -24042,6 +24507,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
@@ -24115,6 +24581,7 @@ DEP_CPP_TRACEU=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -25952,6 +26419,10 @@ SOURCE=..\..\include\IceE\Identity.h
# End Source File
# Begin Source File
+SOURCE=..\..\include\IceE\IdentityUtil.h
+# End Source File
+# Begin Source File
+
SOURCE=..\..\include\IceE\Initialize.h
# End Source File
# Begin Source File
diff --git a/cppe/src/IceEC/icec_CE.vcproj b/cppe/src/IceEC/icec_CE.vcproj
index 62700942554..2d974158c62 100755
--- a/cppe/src/IceEC/icec_CE.vcproj
+++ b/cppe/src/IceEC/icec_CE.vcproj
@@ -1810,6 +1810,80 @@
</FileConfiguration>
</File>
<File
+ RelativePath="..\IceE\IdentityUtil.cpp"
+ >
+ <FileConfiguration
+ Name="Release Static|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Static|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Static|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Static|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Smartphone 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Pocket PC 2003 (ARMV4)"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
RelativePath="..\IceE\Initialize.cpp"
>
<FileConfiguration
@@ -4553,6 +4627,10 @@
>
</File>
<File
+ RelativePath="..\..\include\IceE\IdentityUtil.h"
+ >
+ </File>
+ <File
RelativePath="..\..\include\IceE\Initialize.h"
>
</File>