summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-12-02 09:36:43 -0330
committerDwayne Boone <dwayne@zeroc.com>2009-12-02 09:36:43 -0330
commit86b38c2ffa1bfad7e2d7718b3dec28e22c5be8fe (patch)
tree3bf626b6302eadec180cb6901c4932a502b49773
parentBug 4399 - failure in test/Ice/invoke (diff)
downloadice-86b38c2ffa1bfad7e2d7718b3dec28e22c5be8fe.tar.bz2
ice-86b38c2ffa1bfad7e2d7718b3dec28e22c5be8fe.tar.xz
ice-86b38c2ffa1bfad7e2d7718b3dec28e22c5be8fe.zip
Add ability to compile dlls with unique names for each compiler
-rw-r--r--cpp/config/Make.rules.mak20
-rw-r--r--cpp/src/Freeze/Makefile.mak2
-rw-r--r--cpp/src/Glacier2Lib/Makefile.mak2
-rw-r--r--cpp/src/Ice/DynamicLibrary.cpp13
-rw-r--r--cpp/src/Ice/Makefile.mak2
-rw-r--r--cpp/src/IceBox/Makefile.mak2
-rw-r--r--cpp/src/IceDB/Makefile.mak2
-rw-r--r--cpp/src/IceGridLib/Makefile.mak2
-rw-r--r--cpp/src/IcePatch2Lib/Makefile.mak2
-rw-r--r--cpp/src/IceSSL/Makefile.mak2
-rw-r--r--cpp/src/IceStorm/Makefile.mak2
-rw-r--r--cpp/src/IceStormLib/Makefile.mak2
-rw-r--r--cpp/src/IceUtil/Makefile.mak2
-rw-r--r--cpp/src/IceXML/Makefile.mak2
-rw-r--r--cpp/src/Slice/Makefile.mak2
-rwxr-xr-xdistribution/src/windows/Ice.aip1352
16 files changed, 714 insertions, 697 deletions
diff --git a/cpp/config/Make.rules.mak b/cpp/config/Make.rules.mak
index 1111729d604..854ae8adaae 100644
--- a/cpp/config/Make.rules.mak
+++ b/cpp/config/Make.rules.mak
@@ -46,6 +46,11 @@ THIRDPARTY_HOME = $(PROGRAMFILES)\ZeroC\Ice-$(VERSION)-ThirdParty
!endif
!endif
+#
+# Define if you want the Ice DLLs to have compiler specific names
+#
+#UNIQUE_DLL_NAMES = yes
+
# ----------------------------------------------------------------------
# Don't change anything below this line!
# ----------------------------------------------------------------------
@@ -96,11 +101,12 @@ BCPLUSPLUS = yes
!endif
!if "$(CPP_COMPILER)" == "BCC2010"
-libsuff = \bcc10
+libsuff = \bcc10
!elseif "$(CPP_COMPILER)" == "VC60"
-libsuff = \vc6
+libsuff = \vc6
+UNIQUE_DLL_NAMES = yes
!else
-libsuff = $(x64suffix)
+libsuff = $(x64suffix)
!endif
!if "$(ice_src_dist)" != ""
@@ -117,8 +123,14 @@ CPPFLAGS = -I"$(ice_dir)\include\stlport" $(CPPFLAGS)
!endif
!endif
+!if "$(UNIQUE_DLL_NAMES)" == "yes"
!if "$(CPP_COMPILER)" == "VC60"
-COMPSUFFIX = _vc6
+COMPSUFFIX = vc60_
+!elseif "$(CPP_COMPILER)" == "VC90" || "$(CPP_COMPILER)" == "VC90_EXPRESS"
+COMPSUFFIX = vc90_
+!elseif "$(CPP_COMPILER)" == "BCC2010"
+COMPSUFFIX = bcc10_
+!endif
!endif
!if "$(OPTIMIZE)" != "yes"
diff --git a/cpp/src/Freeze/Makefile.mak b/cpp/src/Freeze/Makefile.mak
index e99e633d2c8..af62cde787f 100644
--- a/cpp/src/Freeze/Makefile.mak
+++ b/cpp/src/Freeze/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\freeze$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\freeze$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\freeze$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/Glacier2Lib/Makefile.mak b/cpp/src/Glacier2Lib/Makefile.mak
index 3f0c644508d..a7200777a3b 100644
--- a/cpp/src/Glacier2Lib/Makefile.mak
+++ b/cpp/src/Glacier2Lib/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\glacier2$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\glacier2$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\glacier2$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/Ice/DynamicLibrary.cpp b/cpp/src/Ice/DynamicLibrary.cpp
index d4f9aea6aba..07293a65e15 100644
--- a/cpp/src/Ice/DynamicLibrary.cpp
+++ b/cpp/src/Ice/DynamicLibrary.cpp
@@ -90,19 +90,24 @@ IceInternal::DynamicLibrary::loadEntryPoint(const string& entryPoint, bool useIc
string lib;
#ifdef _WIN32
- lib = libName + version;
-#if defined(_MSC_VER) && (_MSC_VER < 1300)
+ lib = libName;
+
+# if defined(_MSC_VER) && (_MSC_VER < 1300)
//
// Special case to deal with the naming of IceSSL VC6 DLL.
//
if(IceUtilInternal::toLower(libName) == "icessl")
{
- lib += "_vc6";
+ lib += "vc60_";
}
-#endif
+# endif
+
+ lib += version;
+
# ifdef _DEBUG
lib += 'd';
# endif
+
lib += ".dll";
#elif defined(__APPLE__)
lib = "lib" + libName;
diff --git a/cpp/src/Ice/Makefile.mak b/cpp/src/Ice/Makefile.mak
index a53d0042b70..2eeef01f381 100644
--- a/cpp/src/Ice/Makefile.mak
+++ b/cpp/src/Ice/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\ice$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\ice$(SOVERSION)$(COMPSUFFIX)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\ice$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/IceBox/Makefile.mak b/cpp/src/IceBox/Makefile.mak
index 2377fafa104..bf3f6df696c 100644
--- a/cpp/src/IceBox/Makefile.mak
+++ b/cpp/src/IceBox/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icebox$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icebox$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icebox$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
SERVER_D = $(top_srcdir)\bin\iceboxd.exe
SERVER_R = $(top_srcdir)\bin\icebox.exe
diff --git a/cpp/src/IceDB/Makefile.mak b/cpp/src/IceDB/Makefile.mak
index 45d6fafe208..90480363fbc 100644
--- a/cpp/src/IceDB/Makefile.mak
+++ b/cpp/src/IceDB/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icedb$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icedb$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icedb$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/IceGridLib/Makefile.mak b/cpp/src/IceGridLib/Makefile.mak
index a647623fbe6..abd209a24e7 100644
--- a/cpp/src/IceGridLib/Makefile.mak
+++ b/cpp/src/IceGridLib/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icegrid$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icegrid$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icegrid$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/IcePatch2Lib/Makefile.mak b/cpp/src/IcePatch2Lib/Makefile.mak
index cc73da76ce7..d0468e41457 100644
--- a/cpp/src/IcePatch2Lib/Makefile.mak
+++ b/cpp/src/IcePatch2Lib/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icepatch2$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icepatch2$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icepatch2$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/IceSSL/Makefile.mak b/cpp/src/IceSSL/Makefile.mak
index c39ea1bf59e..d8ccb4c0350 100644
--- a/cpp/src/IceSSL/Makefile.mak
+++ b/cpp/src/IceSSL/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icessl$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icessl$(SOVERSION)$(COMPSUFFIX)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icessl$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/IceStorm/Makefile.mak b/cpp/src/IceStorm/Makefile.mak
index ded2be3bb4d..b4115b1c898 100644
--- a/cpp/src/IceStorm/Makefile.mak
+++ b/cpp/src/IceStorm/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icestormservice$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icestormservice$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icestormservice$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
ADMIN = $(top_srcdir)\bin\icestormadmin.exe
diff --git a/cpp/src/IceStormLib/Makefile.mak b/cpp/src/IceStormLib/Makefile.mak
index 49f9d8964b2..c6dd7ffce78 100644
--- a/cpp/src/IceStormLib/Makefile.mak
+++ b/cpp/src/IceStormLib/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icestorm$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icestorm$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icestorm$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/IceUtil/Makefile.mak b/cpp/src/IceUtil/Makefile.mak
index 125a0ee300a..cd72339f765 100644
--- a/cpp/src/IceUtil/Makefile.mak
+++ b/cpp/src/IceUtil/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\iceutil$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\iceutil$(SOVERSION)$(COMPSUFFIX)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\iceutil$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/IceXML/Makefile.mak b/cpp/src/IceXML/Makefile.mak
index 57d248ebd03..ffcaf4ff3de 100644
--- a/cpp/src/IceXML/Makefile.mak
+++ b/cpp/src/IceXML/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\icexml$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\icexml$(SOVERSION)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\icexml$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/cpp/src/Slice/Makefile.mak b/cpp/src/Slice/Makefile.mak
index cf8d33f14db..971abe7d95c 100644
--- a/cpp/src/Slice/Makefile.mak
+++ b/cpp/src/Slice/Makefile.mak
@@ -10,7 +10,7 @@
top_srcdir = ..\..
LIBNAME = $(top_srcdir)\lib\slice$(LIBSUFFIX).lib
-DLLNAME = $(top_srcdir)\bin\slice$(SOVERSION)$(COMPSUFFIX)$(LIBSUFFIX).dll
+DLLNAME = $(top_srcdir)\bin\slice$(COMPSUFFIX)$(SOVERSION)$(LIBSUFFIX).dll
TARGETS = $(LIBNAME) $(DLLNAME)
diff --git a/distribution/src/windows/Ice.aip b/distribution/src/windows/Ice.aip
index 2d84548e245..d6186a45c33 100755
--- a/distribution/src/windows/Ice.aip
+++ b/distribution/src/windows/Ice.aip
@@ -191,8 +191,6 @@
<ROW Component="ice34b.dll" ComponentId="{8842636E-8113-462F-BAAB-B0FBF2068514}" Directory_="bin_DIR" Attributes="0" KeyPath="ice34b.dll"/>
<ROW Component="ice34b.dll_1" ComponentId="{8FC402BD-0AE1-4C7C-BAA5-60B385578F1F}" Directory_="bcc10_DIR" Attributes="0" KeyPath="ice34b.dll_1"/>
<ROW Component="ice34b.dll_2" ComponentId="{CA20C2F3-2CD5-488D-BCCE-0D62D88AF8F6}" Directory_="x64_DIR" Attributes="256" KeyPath="ice34b.dll_2"/>
- <ROW Component="ice34b_vc6.dll" ComponentId="{6FF93DE0-B949-431F-AF17-12A38752B81D}" Directory_="bin_DIR" Attributes="0" KeyPath="ice34b_vc6.dll"/>
- <ROW Component="ice34b_vc6d.dll" ComponentId="{E30922AA-2D9B-4BFE-BE5B-043F8328BBE0}" Directory_="bin_DIR" Attributes="0" KeyPath="ice34b_vc6d.dll"/>
<ROW Component="ice34bd.dll" ComponentId="{BCAB6CFD-0704-4C3D-9E78-ED5A2F8B24D9}" Directory_="bin_DIR" Attributes="0" KeyPath="ice34bd.dll"/>
<ROW Component="ice34bd.dll_1" ComponentId="{F029ED55-0DD0-420D-8E3F-1AA3DCAB1AAE}" Directory_="bcc10_DIR" Attributes="0" KeyPath="ice34bd.dll_1"/>
<ROW Component="ice34bd.dll_2" ComponentId="{9BCB8BC3-14DA-4A30-9050-E40B2DE744C0}" Directory_="x64_DIR" Attributes="256" KeyPath="ice34bd.dll_2"/>
@@ -248,11 +246,11 @@
<ROW Component="icessl34b.dll" ComponentId="{CF14B330-8E49-4438-94F0-49DD721C7BE0}" Directory_="bin_DIR" Attributes="0" KeyPath="icessl34b.dll"/>
<ROW Component="icessl34b.dll_1" ComponentId="{B3C7523F-F64F-4CAE-8F3A-5F3834E2BEE9}" Directory_="bcc10_DIR" Attributes="0" KeyPath="icessl34b.dll_1"/>
<ROW Component="icessl34b.dll_2" ComponentId="{40CDF1C7-0253-4FD2-A934-793AB5BBE3F0}" Directory_="x64_DIR" Attributes="256" KeyPath="icessl34b.dll_2"/>
- <ROW Component="icessl34b_vc6.dll" ComponentId="{081A1FFC-556C-4397-81A1-C530DC412CA6}" Directory_="bin_DIR" Attributes="0" KeyPath="icessl34b_vc6.dll"/>
- <ROW Component="icessl34b_vc6d.dll" ComponentId="{6D98C74D-A322-44E7-81A1-1D8B906AB7B4}" Directory_="bin_DIR" Attributes="0" KeyPath="icessl34b_vc6d.dll"/>
<ROW Component="icessl34bd.dll" ComponentId="{AF4973E0-9000-473B-AB1F-2F76623DBBAB}" Directory_="bin_DIR" Attributes="0" KeyPath="icessl34bd.dll"/>
<ROW Component="icessl34bd.dll_1" ComponentId="{00F7A49F-631C-4559-A3C7-634EAE3A3CAA}" Directory_="bcc10_DIR" Attributes="0" KeyPath="icessl34bd.dll_1"/>
<ROW Component="icessl34bd.dll_2" ComponentId="{C932E657-41D7-4423-8F95-653271F1FB7C}" Directory_="x64_DIR" Attributes="256" KeyPath="icessl34bd.dll_2"/>
+ <ROW Component="icesslvc60_34b.dll" ComponentId="{A56CBC23-4558-462E-9A48-DE619C51EFFF}" Directory_="bin_DIR" Attributes="0" KeyPath="icesslvc60_34b.dll"/>
+ <ROW Component="icesslvc60_34bd.dll" ComponentId="{B0BBF215-B6F6-47AE-AC7E-251C5C13D2B8}" Directory_="bin_DIR" Attributes="0" KeyPath="icesslvc60_34bd.dll"/>
<ROW Component="icestorm34b.dll" ComponentId="{D934113B-7E79-4248-96C4-FDC61806294E}" Directory_="bin_DIR" Attributes="0" KeyPath="icestorm34b.dll"/>
<ROW Component="icestorm34b.dll_1" ComponentId="{226D6111-E817-4983-AC79-4F307A4EE85F}" Directory_="bcc10_DIR" Attributes="0" KeyPath="icestorm34b.dll_1"/>
<ROW Component="icestorm34b.dll_2" ComponentId="{9319B61C-7F8C-4416-8C4B-1BFA5B672634}" Directory_="x64_DIR" Attributes="256" KeyPath="icestorm34b.dll_2"/>
@@ -278,11 +276,13 @@
<ROW Component="iceutil34b.dll" ComponentId="{77C1382F-AD9A-4034-ADAA-2F450AB8780E}" Directory_="bin_DIR" Attributes="0" KeyPath="iceutil34b.dll"/>
<ROW Component="iceutil34b.dll_1" ComponentId="{11821A48-670C-46BD-A11E-9F248C6D6D6E}" Directory_="bcc10_DIR" Attributes="0" KeyPath="iceutil34b.dll_1"/>
<ROW Component="iceutil34b.dll_2" ComponentId="{10FF74C2-0D51-4B1B-9826-836DCFDF638F}" Directory_="x64_DIR" Attributes="256" KeyPath="iceutil34b.dll_2"/>
- <ROW Component="iceutil34b_vc6.dll" ComponentId="{AEE96226-BD41-47F0-8BDF-A29385EB4480}" Directory_="bin_DIR" Attributes="0" KeyPath="iceutil34b_vc6.dll"/>
- <ROW Component="iceutil34b_vc6d.dll" ComponentId="{C23AE0A1-1879-4F5E-AE92-92ECB5AF6D47}" Directory_="bin_DIR" Attributes="0" KeyPath="iceutil34b_vc6d.dll"/>
<ROW Component="iceutil34bd.dll" ComponentId="{C4F2DD4A-BCDF-4021-809D-807976E6224E}" Directory_="bin_DIR" Attributes="0" KeyPath="iceutil34bd.dll"/>
<ROW Component="iceutil34bd.dll_1" ComponentId="{1741EC7C-566C-4726-9C0C-166ED620F464}" Directory_="bcc10_DIR" Attributes="0" KeyPath="iceutil34bd.dll_1"/>
<ROW Component="iceutil34bd.dll_2" ComponentId="{9E7FD6D5-DA45-4C0C-88B8-A0445F3E9F9E}" Directory_="x64_DIR" Attributes="256" KeyPath="iceutil34bd.dll_2"/>
+ <ROW Component="iceutilvc60_34b.dll" ComponentId="{B4077FB2-66DF-4AA9-A71B-75172C9276E5}" Directory_="bin_DIR" Attributes="0" KeyPath="iceutilvc60_34b.dll"/>
+ <ROW Component="iceutilvc60_34bd.dll" ComponentId="{17BA170A-6504-48B3-AAA4-1B8D7AEA1243}" Directory_="bin_DIR" Attributes="0" KeyPath="iceutilvc60_34bd.dll"/>
+ <ROW Component="icevc60_34b.dll" ComponentId="{504FDF07-BC75-4A68-B331-5F5B5650C14F}" Directory_="bin_DIR" Attributes="0" KeyPath="icevc60_34b.dll"/>
+ <ROW Component="icevc60_34bd.dll" ComponentId="{57B437DD-EF3C-4E62-8787-DDDBF0A888D8}" Directory_="bin_DIR" Attributes="0" KeyPath="icevc60_34bd.dll"/>
<ROW Component="icexml34b.dll" ComponentId="{D1CEFAF0-4B3A-433B-B70B-9B50C8F0AC29}" Directory_="bin_DIR" Attributes="0" KeyPath="icexml34b.dll"/>
<ROW Component="icexml34b.dll_1" ComponentId="{A2FD1C1C-9233-4067-9D95-0408AD9CAC1E}" Directory_="bcc10_DIR" Attributes="0" KeyPath="icexml34b.dll_1"/>
<ROW Component="icexml34b.dll_2" ComponentId="{4F8AD729-A4AC-42B6-A996-08767F3E81E6}" Directory_="x64_DIR" Attributes="256" KeyPath="icexml34b.dll_2"/>
@@ -335,11 +335,11 @@
<ROW Component="slice2rb.exe_1" ComponentId="{41841BCC-5622-4627-992A-3D14834E6D2A}" Directory_="x64_DIR" Attributes="256" KeyPath="slice2rb.exe_1"/>
<ROW Component="slice34b.dll" ComponentId="{0D43837C-26DC-4612-9FB0-C69CC6AF4300}" Directory_="bin_DIR" Attributes="0" KeyPath="slice34b.dll"/>
<ROW Component="slice34b.dll_1" ComponentId="{2645AA7C-73BC-4B58-AFDA-3111319F4E75}" Directory_="x64_DIR" Attributes="256" KeyPath="slice34b.dll_1"/>
- <ROW Component="slice34b_vc6.dll" ComponentId="{6B4E9FAD-04DB-4AEB-92C9-3D23EE63F9A6}" Directory_="bin_DIR" Attributes="0" KeyPath="slice34b_vc6.dll"/>
- <ROW Component="slice34b_vc6d.dll" ComponentId="{03D2B5E4-6040-4C46-ABBB-BB65719603E6}" Directory_="bin_DIR" Attributes="0" KeyPath="slice34b_vc6d.dll"/>
<ROW Component="slice34bd.dll" ComponentId="{81054C7F-D54D-4DA9-9299-3B32D7279028}" Directory_="bin_DIR" Attributes="0" KeyPath="slice34bd.dll"/>
<ROW Component="slice34bd.dll_1" ComponentId="{01CE9CA8-64A3-4689-89F8-52BB5D1C9510}" Directory_="x64_DIR" Attributes="256" KeyPath="slice34bd.dll_1"/>
<ROW Component="sliced.lib" ComponentId="{F324240E-6BAC-4426-90E7-357FBAAE3364}" Directory_="vc6_DIR" Attributes="0" KeyPath="sliced.lib_2" Type="0"/>
+ <ROW Component="slicevc60_34b.dll" ComponentId="{597F04BC-4766-41F6-9478-8E61A7F32FAB}" Directory_="bin_DIR" Attributes="0" KeyPath="slicevc60_34b.dll"/>
+ <ROW Component="slicevc60_34bd.dll" ComponentId="{F4320253-4777-47CD-ADE4-BFD7DDCDD983}" Directory_="bin_DIR" Attributes="0" KeyPath="slicevc60_34bd.dll"/>
<ROW Component="ssleay32.dll" ComponentId="{F65CED20-CE6B-40B1-B2DC-200F208FBBB9}" Directory_="bin_DIR" Attributes="0" KeyPath="ssleay32.dll"/>
<ROW Component="ssleay32.dll_1" ComponentId="{6CECB891-CC31-4949-956C-345E50DF3637}" Directory_="x64_DIR" Attributes="256" KeyPath="ssleay32.dll_1"/>
<ROW Component="ssleay32_vc6.dll" ComponentId="{6C0E8787-03CD-4FB2-9599-401F90EDC6F2}" Directory_="bin_DIR" Attributes="0" KeyPath="ssleay32_vc6.dll"/>
@@ -365,7 +365,7 @@
<ROW Component="wctype.h" ComponentId="{4AFCDC88-0BEA-4420-BAB6-AF1DD421C72C}" Directory_="stlport_DIR" Attributes="0" KeyPath="wctype.h" Type="0"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiFeatsComponent">
- <ROW Feature="MainFeature" Title="MainFeature" Description="Description" Display="3" Level="1" Directory_="APPDIR" Attributes="0" Components="THIRD_PARTY_SOURCES.txt stlport_vc646.dll bzip2.dll bzip2_vc6.dll bzip2_vc6d.dll bzip2d.dll db_archive.exe db_checkpoint.exe db_deadlock.exe db_dump.exe db_hotbackup.exe db_load.exe db_printlog.exe db_recover.exe db_stat.exe db_upgrade.exe db_verify.exe libdb48.dll libdb48d.dll libdb_java48.dll libeay32.dll libeay32_vc6.dll libexpat.dll msvcp60.dll msvcrt.dll openssl.exe ssleay32.dll ssleay32_vc6.dll stlport_vc6_stldebug46.pdb stlport_vc6_stldebug46.dll libdb48.dll_1 ssleay32.dll_1 bzip2.dll_1 bzip2d.dll_1 db_archive.exe_1 db_checkpoint.exe_1 db_deadlock.exe_1 db_dump.exe_1 db_hotbackup.exe_1 db_load.exe_1 db_printlog.exe_1 db_recover.exe_1 db_stat.exe_1 db_upgrade.exe_1 db_verify.exe_1 libdb48.dll_2 libdb48d.dll_1 libeay32.dll_1 libexpat.dll_1 openssl.exe_1 IceGridAdmin.chm TransactionalEvictor.ice SSLInfo.ice StatsF.ice IceBox.ice UserAccountMapper.ice FileServer.ice EndpointInfo.ice IceStorm.ice TransactionHolder.h Application.h Application.h_1 IceBox.h Admin.h ClientUtil.h ConnectionInfo.h IceStorm.h AbstractMutex.h Parser.h Checksum.h IceStorm.dll Glacier2.dll Ice.dll IceBox.dll iceboxnet.exe IceGrid.dll IcePatch2.dll IceSSL.dll transformdb.exe dumpdb.exe freeze34b.dll glacier2router.exe glacier234b.dll ice34b.dll icebox.exe icebox34b.dll iceboxadmin.exe icedb34b.dll icegrid34b.dll icegridadmin.exe icegridfreezedb34b.dll icegridnode.exe icegridregistry.exe icepatch2calc.exe icepatch2client.exe icepatch2server.exe icepatch234b.dll iceserviceinstall.exe icessl34b.dll icestorm34b.dll icestormadmin.exe icestormfreezedb34b.dll icestormmigrate.exe icestormservice34b.dll iceutil34b.dll icexml34b.dll slice2cpp.exe slice2cs.exe slice2freeze.exe slice2freezej.exe slice2html.exe slice2java.exe slice2php.exe slice2py.exe slice2rb.exe slice34b.dll icessl34bd.dll icestorm34bd.dll icestormfreezedb34bd.dll icestormservice34bd.dll iceutil34bd.dll icexml34bd.dll slice34bd.dll freeze34bd.dll glacier234bd.dll ice34bd.dll icebox34bd.dll iceboxd.exe icedb34bd.dll icegrid34bd.dll icegridfreezedb34bd.dll icepatch234bd.dll upgradeicegrid.py freeze34b.dll_1 glacier234b.dll_1 ice34b.dll_1 icegrid34b.dll_1 icepatch234b.dll_1 icessl34b.dll_1 icestorm34b.dll_1 iceutil34b.dll_1 icexml34b.dll_1 icexml34bd.tds freeze34bd.dll_1 glacier234bd.dll_1 ice34bd.dll_1 icegrid34bd.dll_1 icepatch234bd.dll_1 icessl34bd.dll_1 icestorm34bd.dll_1 iceutil34bd.dll_1 icexml34bd.dll_1 transformdb.exe_1 dumpdb.exe_1 freeze34b.dll_2 glacier2router.exe_1 glacier234b.dll_2 ice34b.dll_2 icebox.exe_1 icebox34b.dll_1 iceboxadmin.exe_1 icedb34b.dll_1 icegrid34b.dll_2 icegridadmin.exe_1 icegridfreezedb34b.dll_1 icegridnode.exe_1 icegridregistry.exe_1 icepatch2calc.exe_1 icepatch2client.exe_1 icepatch2server.exe_1 icepatch234b.dll_2 iceserviceinstall.exe_1 icessl34b.dll_2 icestorm34b.dll_2 icestormadmin.exe_1 icestormfreezedb34b.dll_1 icestormmigrate.exe_1 icestormservice34b.dll_1 iceutil34b.dll_2 icexml34b.dll_2 slice2cpp.exe_1 slice2cs.exe_1 slice2freeze.exe_1 slice2freezej.exe_1 slice2html.exe_1 slice2java.exe_1 slice2php.exe_1 slice2py.exe_1 slice2rb.exe_1 slice34b.dll_1 slice34bd.dll_1 freeze34bd.pdb freeze34bd.dll_2 glacier234bd.dll_2 ice34bd.dll_2 icebox34bd.dll_1 iceboxd.exe_1 icedb34bd.dll_1 icegrid34bd.dll_2 icegridfreezedb34bd.dll_1 icepatch234bd.dll_2 icessl34bd.dll_2 icestorm34bd.dll_2 icestormfreezedb34bd.dll_1 icestormservice34bd.dll_1 iceutil34bd.dll_2 icexml34bd.dll_2 slice34b_vc6.dll ice34b_vc6.dll icessl34b_vc6.dll iceutil34b_vc6.dll slice34b_vc6d.dll ice34b_vc6d.dll icessl34b_vc6d.dll iceutil34b_vc6d.dll Ice.jar freezed.lib freezed.lib_1 IceStorm_IceStorm_ice.py init_.py init_.py_1 init_.py_2 init_.py_3 php_ice.dll wctype.h vector.h vc_select_lib.h vector.h_1 type_traits.h strstream strstream_1 stdlib.h strstream.h unconfigure vector.h_2 vector.h_3 strstream.h_1 strstream.h_2 icestormsqldb34bd.dll icegridsqldb34bd.dll icegridsqldb34b.dll icestormsqldb34b.dll icestormsqldb34bd.dll_1 icegridsqldb34bd.dll_1 icegridsqldb34b.dll_1 icestormsqldb34b.dll_1 sliced.lib QtSqld4.dll QtCore4.dll QtCored4.dll QtSql4.dll QtSqld4.dll_1 QtCore4.dll_1 QtCored4.dll_1 QtSql4.dll_1 InstallDir IceStorm.rb IceRuby.dll SSLInfo.rb StatsF.rb IceBox.rb UserAccountMapper.rb IceStorm.rb_1 FileServer.rb"/>
+ <ROW Feature="MainFeature" Title="MainFeature" Description="Description" Display="3" Level="1" Directory_="APPDIR" Attributes="0" Components="THIRD_PARTY_SOURCES.txt stlport_vc646.dll bzip2.dll bzip2_vc6.dll bzip2_vc6d.dll bzip2d.dll db_archive.exe db_checkpoint.exe db_deadlock.exe db_dump.exe db_hotbackup.exe db_load.exe db_printlog.exe db_recover.exe db_stat.exe db_upgrade.exe db_verify.exe libdb48.dll libdb48d.dll libdb_java48.dll libeay32.dll libeay32_vc6.dll libexpat.dll msvcp60.dll msvcrt.dll openssl.exe ssleay32.dll ssleay32_vc6.dll stlport_vc6_stldebug46.pdb stlport_vc6_stldebug46.dll libdb48.dll_1 ssleay32.dll_1 bzip2.dll_1 bzip2d.dll_1 db_archive.exe_1 db_checkpoint.exe_1 db_deadlock.exe_1 db_dump.exe_1 db_hotbackup.exe_1 db_load.exe_1 db_printlog.exe_1 db_recover.exe_1 db_stat.exe_1 db_upgrade.exe_1 db_verify.exe_1 libdb48.dll_2 libdb48d.dll_1 libeay32.dll_1 libexpat.dll_1 openssl.exe_1 IceGridAdmin.chm TransactionalEvictor.ice SSLInfo.ice StatsF.ice IceBox.ice UserAccountMapper.ice FileServer.ice EndpointInfo.ice IceStorm.ice TransactionHolder.h Application.h Application.h_1 IceBox.h Admin.h ClientUtil.h ConnectionInfo.h IceStorm.h AbstractMutex.h Parser.h Checksum.h IceStorm.dll Glacier2.dll Ice.dll IceBox.dll iceboxnet.exe IceGrid.dll IcePatch2.dll IceSSL.dll transformdb.exe dumpdb.exe freeze34b.dll glacier2router.exe glacier234b.dll ice34b.dll icebox.exe icebox34b.dll iceboxadmin.exe icedb34b.dll icegrid34b.dll icegridadmin.exe icegridfreezedb34b.dll icegridnode.exe icegridregistry.exe icepatch2calc.exe icepatch2client.exe icepatch2server.exe icepatch234b.dll iceserviceinstall.exe icessl34b.dll icestorm34b.dll icestormadmin.exe icestormfreezedb34b.dll icestormmigrate.exe icestormservice34b.dll iceutil34b.dll icexml34b.dll slice2cpp.exe slice2cs.exe slice2freeze.exe slice2freezej.exe slice2html.exe slice2java.exe slice2php.exe slice2py.exe slice2rb.exe slice34b.dll icessl34bd.dll icestorm34bd.dll icestormfreezedb34bd.dll icestormservice34bd.dll iceutil34bd.dll icexml34bd.dll slice34bd.dll freeze34bd.dll glacier234bd.dll ice34bd.dll icebox34bd.dll iceboxd.exe icedb34bd.dll icegrid34bd.dll icegridfreezedb34bd.dll icepatch234bd.dll upgradeicegrid.py freeze34b.dll_1 glacier234b.dll_1 ice34b.dll_1 icegrid34b.dll_1 icepatch234b.dll_1 icessl34b.dll_1 icestorm34b.dll_1 iceutil34b.dll_1 icexml34b.dll_1 icexml34bd.tds freeze34bd.dll_1 glacier234bd.dll_1 ice34bd.dll_1 icegrid34bd.dll_1 icepatch234bd.dll_1 icessl34bd.dll_1 icestorm34bd.dll_1 iceutil34bd.dll_1 icexml34bd.dll_1 transformdb.exe_1 dumpdb.exe_1 freeze34b.dll_2 glacier2router.exe_1 glacier234b.dll_2 ice34b.dll_2 icebox.exe_1 icebox34b.dll_1 iceboxadmin.exe_1 icedb34b.dll_1 icegrid34b.dll_2 icegridadmin.exe_1 icegridfreezedb34b.dll_1 icegridnode.exe_1 icegridregistry.exe_1 icepatch2calc.exe_1 icepatch2client.exe_1 icepatch2server.exe_1 icepatch234b.dll_2 iceserviceinstall.exe_1 icessl34b.dll_2 icestorm34b.dll_2 icestormadmin.exe_1 icestormfreezedb34b.dll_1 icestormmigrate.exe_1 icestormservice34b.dll_1 iceutil34b.dll_2 icexml34b.dll_2 slice2cpp.exe_1 slice2cs.exe_1 slice2freeze.exe_1 slice2freezej.exe_1 slice2html.exe_1 slice2java.exe_1 slice2php.exe_1 slice2py.exe_1 slice2rb.exe_1 slice34b.dll_1 slice34bd.dll_1 freeze34bd.pdb freeze34bd.dll_2 glacier234bd.dll_2 ice34bd.dll_2 icebox34bd.dll_1 iceboxd.exe_1 icedb34bd.dll_1 icegrid34bd.dll_2 icegridfreezedb34bd.dll_1 icepatch234bd.dll_2 icessl34bd.dll_2 icestorm34bd.dll_2 icestormfreezedb34bd.dll_1 icestormservice34bd.dll_1 iceutil34bd.dll_2 icexml34bd.dll_2 Ice.jar freezed.lib freezed.lib_1 IceStorm_IceStorm_ice.py init_.py init_.py_1 init_.py_2 init_.py_3 php_ice.dll wctype.h vector.h vc_select_lib.h vector.h_1 type_traits.h strstream strstream_1 stdlib.h strstream.h unconfigure vector.h_2 vector.h_3 strstream.h_1 strstream.h_2 icestormsqldb34bd.dll icegridsqldb34bd.dll icegridsqldb34b.dll icestormsqldb34b.dll icestormsqldb34bd.dll_1 icegridsqldb34bd.dll_1 icegridsqldb34b.dll_1 icestormsqldb34b.dll_1 sliced.lib QtSqld4.dll QtCore4.dll QtCored4.dll QtSql4.dll QtSqld4.dll_1 QtCore4.dll_1 QtCored4.dll_1 QtSql4.dll_1 InstallDir IceStorm.rb IceRuby.dll SSLInfo.rb StatsF.rb IceBox.rb UserAccountMapper.rb IceStorm.rb_1 FileServer.rb slicevc60_34bd.dll icesslvc60_34bd.dll iceutilvc60_34bd.dll icevc60_34bd.dll slicevc60_34b.dll icesslvc60_34b.dll iceutilvc60_34b.dll icevc60_34b.dll"/>
<ROW Feature="VS2008PLUGIN" Title="VS 2008 Plugin" Description="Visual Studio 2008 Plugin" Display="4" Level="1" Directory_="APPDIR" Attributes="0" Components="slice.vsdir slice.vsdir_1 slice.vsdir_2 slice.vsdir_3 Slice.zip newslice.ico IceVisualStudioAddin_VS2008.dll Addins _"/>
<ATTRIBUTE name="CurrentFeature" value="MainFeature"/>
</COMPONENT>
@@ -373,7 +373,7 @@
<ROW File="AbstractMutex.h" Component_="AbstractMutex.h" FileName="Abstra~1.h|AbstractMutex.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\AbstractMutex.h" SelfReg="false" Sequence="259"/>
<ROW File="Admin.h" Component_="Admin.h" FileName="Admin.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Admin.h" SelfReg="false" Sequence="238"/>
<ROW File="Admin.ice" Component_="UserAccountMapper.ice" FileName="Admin.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Admin.ice" SelfReg="false" Sequence="108"/>
- <ROW File="Admin.rb" Component_="UserAccountMapper.rb" FileName="Admin.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Admin.rb" SelfReg="false" Sequence="1159"/>
+ <ROW File="Admin.rb" Component_="UserAccountMapper.rb" FileName="Admin.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Admin.rb" SelfReg="false" Sequence="1147"/>
<ROW File="Application.h" Component_="Application.h" FileName="Applic~1.h|Application.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Glacier2\Application.h" SelfReg="false" Sequence="140"/>
<ROW File="Application.h_1" Component_="Application.h_1" FileName="Applic~1.h|Application.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Application.h" SelfReg="false" Sequence="148"/>
<ROW File="ArgVector.h" Component_="AbstractMutex.h" FileName="ArgVec~1.h|ArgVector.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\ArgVector.h" SelfReg="false" Sequence="260"/>
@@ -383,8 +383,8 @@
<ROW File="Buffer.h" Component_="Application.h_1" FileName="Buffer.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Buffer.h" SelfReg="false" Sequence="150"/>
<ROW File="BuiltinSequences.h" Component_="Application.h_1" FileName="Builti~1.h|BuiltinSequences.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\BuiltinSequences.h" SelfReg="false" Sequence="151"/>
<ROW File="BuiltinSequences.ice" Component_="StatsF.ice" FileName="Builti~1.ice|BuiltinSequences.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\BuiltinSequences.ice" SelfReg="false" Sequence="72"/>
- <ROW File="BuiltinSequences.rb" Component_="StatsF.rb" FileName="Builti~1.rb|BuiltinSequences.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\BuiltinSequences.rb" SelfReg="false" Sequence="1126"/>
- <ROW File="CHANGES.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="CHANGES.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\CHANGES.txt" SelfReg="false" Sequence="1071"/>
+ <ROW File="BuiltinSequences.rb" Component_="StatsF.rb" FileName="Builti~1.rb|BuiltinSequences.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\BuiltinSequences.rb" SelfReg="false" Sequence="1114"/>
+ <ROW File="CHANGES.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="CHANGES.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\CHANGES.txt" SelfReg="false" Sequence="1059"/>
<ROW File="CPlusPlusUtil.h" Component_="Checksum.h" FileName="CPlusP~1.h|CPlusPlusUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Slice\CPlusPlusUtil.h" SelfReg="false" Sequence="297"/>
<ROW File="Cache.h" Component_="AbstractMutex.h" FileName="Cache.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Cache.h" SelfReg="false" Sequence="261"/>
<ROW File="Catalog.h" Component_="TransactionHolder.h" FileName="Catalog.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Freeze\Catalog.h" SelfReg="false" Sequence="124"/>
@@ -395,10 +395,10 @@
<ROW File="ClientUtil.h" Component_="ClientUtil.h" FileName="Client~1.h|ClientUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IcePatch2\ClientUtil.h" SelfReg="false" Sequence="250"/>
<ROW File="Communicator.h" Component_="Application.h_1" FileName="Commun~1.h|Communicator.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Communicator.h" SelfReg="false" Sequence="152"/>
<ROW File="Communicator.ice" Component_="StatsF.ice" FileName="Commun~1.ice|Communicator.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Communicator.ice" SelfReg="false" Sequence="73"/>
- <ROW File="Communicator.rb" Component_="StatsF.rb" FileName="Commun~1.rb|Communicator.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Communicator.rb" SelfReg="false" Sequence="1127"/>
+ <ROW File="Communicator.rb" Component_="StatsF.rb" FileName="Commun~1.rb|Communicator.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Communicator.rb" SelfReg="false" Sequence="1115"/>
<ROW File="CommunicatorF.h" Component_="Application.h_1" FileName="Commun~2.h|CommunicatorF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\CommunicatorF.h" SelfReg="false" Sequence="153"/>
<ROW File="CommunicatorF.ice" Component_="StatsF.ice" FileName="Commun~2.ice|CommunicatorF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\CommunicatorF.ice" SelfReg="false" Sequence="74"/>
- <ROW File="CommunicatorF.rb" Component_="StatsF.rb" FileName="Commun~2.rb|CommunicatorF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\CommunicatorF.rb" SelfReg="false" Sequence="1128"/>
+ <ROW File="CommunicatorF.rb" Component_="StatsF.rb" FileName="Commun~2.rb|CommunicatorF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\CommunicatorF.rb" SelfReg="false" Sequence="1116"/>
<ROW File="Cond.h" Component_="AbstractMutex.h" FileName="Cond.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Cond.h" SelfReg="false" Sequence="262"/>
<ROW File="Config.h" Component_="Application.h_1" FileName="Config.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Config.h" SelfReg="false" Sequence="154"/>
<ROW File="Config.h_1" Component_="AbstractMutex.h" FileName="Config.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Config.h" SelfReg="false" Sequence="263"/>
@@ -406,12 +406,12 @@
<ROW File="Connection.h_1" Component_="Application.h_1" FileName="Connec~1.h|Connection.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Connection.h" SelfReg="false" Sequence="155"/>
<ROW File="Connection.ice" Component_="TransactionalEvictor.ice" FileName="Connec~1.ice|Connection.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Freeze\Connection.ice" SelfReg="false" Sequence="57"/>
<ROW File="Connection.ice_1" Component_="StatsF.ice" FileName="Connec~1.ice|Connection.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Connection.ice" SelfReg="false" Sequence="75"/>
- <ROW File="Connection.rb" Component_="StatsF.rb" FileName="Connec~1.rb|Connection.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Connection.rb" SelfReg="false" Sequence="1129"/>
+ <ROW File="Connection.rb" Component_="StatsF.rb" FileName="Connec~1.rb|Connection.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Connection.rb" SelfReg="false" Sequence="1117"/>
<ROW File="ConnectionF.h" Component_="TransactionHolder.h" FileName="Connec~2.h|ConnectionF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Freeze\ConnectionF.h" SelfReg="false" Sequence="128"/>
<ROW File="ConnectionF.h_1" Component_="Application.h_1" FileName="Connec~2.h|ConnectionF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ConnectionF.h" SelfReg="false" Sequence="156"/>
<ROW File="ConnectionF.ice" Component_="TransactionalEvictor.ice" FileName="Connec~2.ice|ConnectionF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Freeze\ConnectionF.ice" SelfReg="false" Sequence="58"/>
<ROW File="ConnectionF.ice_1" Component_="StatsF.ice" FileName="Connec~2.ice|ConnectionF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ConnectionF.ice" SelfReg="false" Sequence="76"/>
- <ROW File="ConnectionF.rb" Component_="StatsF.rb" FileName="Connec~2.rb|ConnectionF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ConnectionF.rb" SelfReg="false" Sequence="1130"/>
+ <ROW File="ConnectionF.rb" Component_="StatsF.rb" FileName="Connec~2.rb|ConnectionF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ConnectionF.rb" SelfReg="false" Sequence="1118"/>
<ROW File="ConnectionFactoryF.h" Component_="Application.h_1" FileName="Connec~3.h|ConnectionFactoryF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ConnectionFactoryF.h" SelfReg="false" Sequence="157"/>
<ROW File="ConnectionIF.h" Component_="Application.h_1" FileName="Connec~4.h|ConnectionIF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ConnectionIF.h" SelfReg="false" Sequence="158"/>
<ROW File="ConnectionInfo.h" Component_="ConnectionInfo.h" FileName="Connec~1.h|ConnectionInfo.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceSSL\ConnectionInfo.h" SelfReg="false" Sequence="254"/>
@@ -422,12 +422,12 @@
<ROW File="CtrlCHandler.h" Component_="AbstractMutex.h" FileName="CtrlCH~1.h|CtrlCHandler.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\CtrlCHandler.h" SelfReg="false" Sequence="265"/>
<ROW File="Current.h" Component_="Application.h_1" FileName="Current.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Current.h" SelfReg="false" Sequence="160"/>
<ROW File="Current.ice" Component_="StatsF.ice" FileName="Current.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Current.ice" SelfReg="false" Sequence="77"/>
- <ROW File="Current.rb" Component_="StatsF.rb" FileName="Current.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Current.rb" SelfReg="false" Sequence="1131"/>
+ <ROW File="Current.rb" Component_="StatsF.rb" FileName="Current.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Current.rb" SelfReg="false" Sequence="1119"/>
<ROW File="DB.h" Component_="TransactionHolder.h" FileName="DB.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Freeze\DB.h" SelfReg="false" Sequence="129"/>
<ROW File="DB.ice" Component_="TransactionalEvictor.ice" FileName="DB.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Freeze\DB.ice" SelfReg="false" Sequence="59"/>
<ROW File="Descriptor.h" Component_="Admin.h" FileName="Descri~1.h|Descriptor.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Descriptor.h" SelfReg="false" Sequence="239"/>
<ROW File="Descriptor.ice" Component_="UserAccountMapper.ice" FileName="Descri~1.ice|Descriptor.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Descriptor.ice" SelfReg="false" Sequence="109"/>
- <ROW File="Descriptor.rb" Component_="UserAccountMapper.rb" FileName="Descri~1.rb|Descriptor.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Descriptor.rb" SelfReg="false" Sequence="1160"/>
+ <ROW File="Descriptor.rb" Component_="UserAccountMapper.rb" FileName="Descri~1.rb|Descriptor.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Descriptor.rb" SelfReg="false" Sequence="1148"/>
<ROW File="Direct.h" Component_="Application.h_1" FileName="Direct.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Direct.h" SelfReg="false" Sequence="161"/>
<ROW File="DisableWarnings.h" Component_="AbstractMutex.h" FileName="Disabl~1.h|DisableWarnings.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\DisableWarnings.h" SelfReg="false" Sequence="266"/>
<ROW File="DispatchInterceptor.h" Component_="Application.h_1" FileName="Dispat~1.h|DispatchInterceptor.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\DispatchInterceptor.h" SelfReg="false" Sequence="162"/>
@@ -436,10 +436,10 @@
<ROW File="DynamicLibraryF.h" Component_="Application.h_1" FileName="Dynami~2.h|DynamicLibraryF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\DynamicLibraryF.h" SelfReg="false" Sequence="164"/>
<ROW File="Endpoint.h" Component_="Application.h_1" FileName="Endpoint.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Endpoint.h" SelfReg="false" Sequence="165"/>
<ROW File="Endpoint.ice" Component_="StatsF.ice" FileName="Endpoint.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Endpoint.ice" SelfReg="false" Sequence="78"/>
- <ROW File="Endpoint.rb" Component_="StatsF.rb" FileName="Endpoint.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Endpoint.rb" SelfReg="false" Sequence="1132"/>
+ <ROW File="Endpoint.rb" Component_="StatsF.rb" FileName="Endpoint.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Endpoint.rb" SelfReg="false" Sequence="1120"/>
<ROW File="EndpointF.h" Component_="Application.h_1" FileName="Endpoi~1.h|EndpointF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\EndpointF.h" SelfReg="false" Sequence="166"/>
<ROW File="EndpointF.ice" Component_="StatsF.ice" FileName="Endpoi~1.ice|EndpointF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\EndpointF.ice" SelfReg="false" Sequence="79"/>
- <ROW File="EndpointF.rb" Component_="StatsF.rb" FileName="Endpoi~1.rb|EndpointF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\EndpointF.rb" SelfReg="false" Sequence="1133"/>
+ <ROW File="EndpointF.rb" Component_="StatsF.rb" FileName="Endpoi~1.rb|EndpointF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\EndpointF.rb" SelfReg="false" Sequence="1121"/>
<ROW File="EndpointFactory.h" Component_="Application.h_1" FileName="Endpoi~2.h|EndpointFactory.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\EndpointFactory.h" SelfReg="false" Sequence="167"/>
<ROW File="EndpointFactoryF.h" Component_="Application.h_1" FileName="Endpoi~3.h|EndpointFactoryF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\EndpointFactoryF.h" SelfReg="false" Sequence="168"/>
<ROW File="EndpointIF.h" Component_="Application.h_1" FileName="Endpoi~4.h|EndpointIF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\EndpointIF.h" SelfReg="false" Sequence="169"/>
@@ -447,7 +447,7 @@
<ROW File="EndpointInfo.ice" Component_="EndpointInfo.ice" FileName="Endpoi~1.ice|EndpointInfo.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceSSL\EndpointInfo.ice" SelfReg="false" Sequence="119"/>
<ROW File="EndpointTypes.h" Component_="Application.h_1" FileName="Endpoi~5.h|EndpointTypes.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\EndpointTypes.h" SelfReg="false" Sequence="170"/>
<ROW File="EndpointTypes.ice" Component_="StatsF.ice" FileName="Endpoi~2.ice|EndpointTypes.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\EndpointTypes.ice" SelfReg="false" Sequence="80"/>
- <ROW File="EndpointTypes.rb" Component_="StatsF.rb" FileName="Endpoi~2.rb|EndpointTypes.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\EndpointTypes.rb" SelfReg="false" Sequence="1134"/>
+ <ROW File="EndpointTypes.rb" Component_="StatsF.rb" FileName="Endpoi~2.rb|EndpointTypes.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\EndpointTypes.rb" SelfReg="false" Sequence="1122"/>
<ROW File="Evictor.h" Component_="TransactionHolder.h" FileName="Evictor.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Freeze\Evictor.h" SelfReg="false" Sequence="130"/>
<ROW File="Evictor.ice" Component_="TransactionalEvictor.ice" FileName="Evictor.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Freeze\Evictor.ice" SelfReg="false" Sequence="60"/>
<ROW File="EvictorF.h" Component_="TransactionHolder.h" FileName="EvictorF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Freeze\EvictorF.h" SelfReg="false" Sequence="131"/>
@@ -460,25 +460,25 @@
<ROW File="Exception.h_3" Component_="AbstractMutex.h" FileName="Except~1.h|Exception.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Exception.h" SelfReg="false" Sequence="267"/>
<ROW File="Exception.ice" Component_="TransactionalEvictor.ice" FileName="Except~1.ice|Exception.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Freeze\Exception.ice" SelfReg="false" Sequence="63"/>
<ROW File="Exception.ice_1" Component_="UserAccountMapper.ice" FileName="Except~1.ice|Exception.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Exception.ice" SelfReg="false" Sequence="110"/>
- <ROW File="Exception.rb" Component_="UserAccountMapper.rb" FileName="Except~1.rb|Exception.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Exception.rb" SelfReg="false" Sequence="1161"/>
+ <ROW File="Exception.rb" Component_="UserAccountMapper.rb" FileName="Except~1.rb|Exception.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Exception.rb" SelfReg="false" Sequence="1149"/>
<ROW File="FacetMap.h" Component_="Application.h_1" FileName="FacetMap.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\FacetMap.h" SelfReg="false" Sequence="172"/>
<ROW File="FacetMap.ice" Component_="StatsF.ice" FileName="FacetMap.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\FacetMap.ice" SelfReg="false" Sequence="81"/>
- <ROW File="FacetMap.rb" Component_="StatsF.rb" FileName="FacetMap.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\FacetMap.rb" SelfReg="false" Sequence="1135"/>
+ <ROW File="FacetMap.rb" Component_="StatsF.rb" FileName="FacetMap.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\FacetMap.rb" SelfReg="false" Sequence="1123"/>
<ROW File="FactoryTable.h" Component_="Application.h_1" FileName="Factor~1.h|FactoryTable.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\FactoryTable.h" SelfReg="false" Sequence="173"/>
<ROW File="FactoryTableInit.h" Component_="Application.h_1" FileName="Factor~2.h|FactoryTableInit.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\FactoryTableInit.h" SelfReg="false" Sequence="174"/>
<ROW File="FileInfo.h" Component_="ClientUtil.h" FileName="FileInfo.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IcePatch2\FileInfo.h" SelfReg="false" Sequence="251"/>
<ROW File="FileInfo.ice" Component_="FileServer.ice" FileName="FileInfo.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IcePatch2\FileInfo.ice" SelfReg="false" Sequence="118"/>
- <ROW File="FileInfo.rb" Component_="FileServer.rb" FileName="FileInfo.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IcePatch2\FileInfo.rb" SelfReg="false" Sequence="1170"/>
+ <ROW File="FileInfo.rb" Component_="FileServer.rb" FileName="FileInfo.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IcePatch2\FileInfo.rb" SelfReg="false" Sequence="1158"/>
<ROW File="FileParser.h" Component_="Admin.h" FileName="FilePa~1.h|FileParser.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\FileParser.h" SelfReg="false" Sequence="241"/>
<ROW File="FileParser.ice" Component_="UserAccountMapper.ice" FileName="FilePa~1.ice|FileParser.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\FileParser.ice" SelfReg="false" Sequence="111"/>
- <ROW File="FileParser.rb" Component_="UserAccountMapper.rb" FileName="FilePa~1.rb|FileParser.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\FileParser.rb" SelfReg="false" Sequence="1162"/>
+ <ROW File="FileParser.rb" Component_="UserAccountMapper.rb" FileName="FilePa~1.rb|FileParser.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\FileParser.rb" SelfReg="false" Sequence="1150"/>
<ROW File="FileServer.h" Component_="ClientUtil.h" FileName="FileSe~1.h|FileServer.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IcePatch2\FileServer.h" SelfReg="false" Sequence="252"/>
<ROW File="FileServer.ice" Component_="FileServer.ice" FileName="FileSe~1.ice|FileServer.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IcePatch2\FileServer.ice" SelfReg="false" Sequence="117"/>
- <ROW File="FileServer.rb" Component_="FileServer.rb" FileName="FileSe~1.rb|FileServer.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IcePatch2\FileServer.rb" SelfReg="false" Sequence="1169"/>
+ <ROW File="FileServer.rb" Component_="FileServer.rb" FileName="FileSe~1.rb|FileServer.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IcePatch2\FileServer.rb" SelfReg="false" Sequence="1157"/>
<ROW File="FileTracker.h" Component_="Checksum.h" FileName="FileTr~1.h|FileTracker.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Slice\FileTracker.h" SelfReg="false" Sequence="300"/>
<ROW File="FileUtil.h" Component_="AbstractMutex.h" FileName="FileUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\FileUtil.h" SelfReg="false" Sequence="268"/>
<ROW File="Freeze.h" Component_="TransactionHolder.h" FileName="Freeze.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Freeze\Freeze.h" SelfReg="false" Sequence="134"/>
- <ROW File="Freeze.jar" Component_="Ice.jar" FileName="Freeze.jar" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\lib\Freeze.jar" SelfReg="false" Sequence="523"/>
+ <ROW File="Freeze.jar" Component_="Ice.jar" FileName="Freeze.jar" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\lib\Freeze.jar" SelfReg="false" Sequence="511"/>
<ROW File="Functional.h" Component_="Application.h_1" FileName="Functi~1.h|Functional.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Functional.h" SelfReg="false" Sequence="175"/>
<ROW File="Functional.h_1" Component_="AbstractMutex.h" FileName="Functi~1.h|Functional.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Functional.h" SelfReg="false" Sequence="269"/>
<ROW File="GCCountMap.h" Component_="Application.h_1" FileName="GCCoun~1.h|GCCountMap.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\GCCountMap.h" SelfReg="false" Sequence="176"/>
@@ -486,58 +486,58 @@
<ROW File="Glacier2.dll" Component_="Glacier2.dll" FileName="Glacier2.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\Glacier2.dll" SelfReg="false" Sequence="311" DigSign="true"/>
<ROW File="Glacier2.h" Component_="Application.h" FileName="Glacier2.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Glacier2\Glacier2.h" SelfReg="false" Sequence="141"/>
<ROW File="Glacier2.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="Glacier2.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\Glacier2.pdb" SelfReg="false" Sequence="310"/>
- <ROW File="Glacier2.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacier2.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2.py" SelfReg="false" Sequence="596"/>
- <ROW File="Glacier2.rb" Component_="IceStorm.rb" FileName="Glacier2.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2.rb" SelfReg="false" Sequence="1113"/>
+ <ROW File="Glacier2.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacier2.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2.py" SelfReg="false" Sequence="584"/>
+ <ROW File="Glacier2.rb" Component_="IceStorm.rb" FileName="Glacier2.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2.rb" SelfReg="false" Sequence="1101"/>
<ROW File="Glacier2.xml" Component_="stlport_vc6_stldebug46.pdb" FileName="Glacier2.xml" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\Glacier2.xml" SelfReg="false" Sequence="325"/>
- <ROW File="Glacier2_PermissionsVerifierF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~2.py|Glacier2_PermissionsVerifierF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_PermissionsVerifierF_ice.py" SelfReg="false" Sequence="598"/>
- <ROW File="Glacier2_PermissionsVerifier_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~1.py|Glacier2_PermissionsVerifier_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_PermissionsVerifier_ice.py" SelfReg="false" Sequence="597"/>
- <ROW File="Glacier2_RouterF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~4.py|Glacier2_RouterF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_RouterF_ice.py" SelfReg="false" Sequence="600"/>
- <ROW File="Glacier2_Router_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~3.py|Glacier2_Router_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_Router_ice.py" SelfReg="false" Sequence="599"/>
- <ROW File="Glacier2_SSLInfo_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~6.py|Glacier2_SSLInfo_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_SSLInfo_ice.py" SelfReg="false" Sequence="602"/>
- <ROW File="Glacier2_Session_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~5.py|Glacier2_Session_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_Session_ice.py" SelfReg="false" Sequence="601"/>
+ <ROW File="Glacier2_PermissionsVerifierF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~2.py|Glacier2_PermissionsVerifierF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_PermissionsVerifierF_ice.py" SelfReg="false" Sequence="586"/>
+ <ROW File="Glacier2_PermissionsVerifier_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~1.py|Glacier2_PermissionsVerifier_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_PermissionsVerifier_ice.py" SelfReg="false" Sequence="585"/>
+ <ROW File="Glacier2_RouterF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~4.py|Glacier2_RouterF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_RouterF_ice.py" SelfReg="false" Sequence="588"/>
+ <ROW File="Glacier2_Router_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~3.py|Glacier2_Router_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_Router_ice.py" SelfReg="false" Sequence="587"/>
+ <ROW File="Glacier2_SSLInfo_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~6.py|Glacier2_SSLInfo_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_SSLInfo_ice.py" SelfReg="false" Sequence="590"/>
+ <ROW File="Glacier2_Session_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Glacie~5.py|Glacier2_Session_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Glacier2_Session_ice.py" SelfReg="false" Sequence="589"/>
<ROW File="Handle.h" Component_="Application.h_1" FileName="Handle.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Handle.h" SelfReg="false" Sequence="178"/>
<ROW File="Handle.h_1" Component_="AbstractMutex.h" FileName="Handle.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Handle.h" SelfReg="false" Sequence="270"/>
- <ROW File="ICE_LICENSE.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="ICE_LI~1.txt|ICE_LICENSE.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\ICE_LICENSE.txt" SelfReg="false" Sequence="1072"/>
+ <ROW File="ICE_LICENSE.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="ICE_LI~1.txt|ICE_LICENSE.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\ICE_LICENSE.txt" SelfReg="false" Sequence="1060"/>
<ROW File="Ice.dll" Component_="Ice.dll" FileName="Ice.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\Ice.dll" SelfReg="false" Sequence="313" DigSign="true"/>
<ROW File="Ice.h" Component_="Application.h_1" FileName="Ice.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Ice.h" SelfReg="false" Sequence="179"/>
- <ROW File="Ice.jar" Component_="Ice.jar" FileName="Ice.jar" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\lib\Ice.jar" SelfReg="false" Sequence="521"/>
+ <ROW File="Ice.jar" Component_="Ice.jar" FileName="Ice.jar" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\lib\Ice.jar" SelfReg="false" Sequence="509"/>
<ROW File="Ice.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="Ice.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\Ice.pdb" SelfReg="false" Sequence="312"/>
- <ROW File="Ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice.py" SelfReg="false" Sequence="603"/>
- <ROW File="Ice.rb" Component_="IceStorm.rb" FileName="Ice.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice.rb" SelfReg="false" Sequence="1114"/>
+ <ROW File="Ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice.py" SelfReg="false" Sequence="591"/>
+ <ROW File="Ice.rb" Component_="IceStorm.rb" FileName="Ice.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice.rb" SelfReg="false" Sequence="1102"/>
<ROW File="Ice.xml" Component_="stlport_vc6_stldebug46.pdb" FileName="Ice.xml" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\Ice.xml" SelfReg="false" Sequence="326"/>
<ROW File="IceBox.dll" Component_="IceBox.dll" FileName="IceBox.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceBox.dll" SelfReg="false" Sequence="315" DigSign="true"/>
<ROW File="IceBox.h" Component_="IceBox.h" FileName="IceBox.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceBox\IceBox.h" SelfReg="false" Sequence="237"/>
<ROW File="IceBox.ice" Component_="IceBox.ice" FileName="IceBox.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceBox\IceBox.ice" SelfReg="false" Sequence="106"/>
<ROW File="IceBox.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="IceBox.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceBox.pdb" SelfReg="false" Sequence="314"/>
- <ROW File="IceBox.rb" Component_="IceStorm.rb" FileName="IceBox.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceBox.rb" SelfReg="false" Sequence="1115"/>
- <ROW File="IceBox.rb_1" Component_="IceBox.rb" FileName="IceBox.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceBox\IceBox.rb" SelfReg="false" Sequence="1157"/>
+ <ROW File="IceBox.rb" Component_="IceStorm.rb" FileName="IceBox.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceBox.rb" SelfReg="false" Sequence="1103"/>
+ <ROW File="IceBox.rb_1" Component_="IceBox.rb" FileName="IceBox.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceBox\IceBox.rb" SelfReg="false" Sequence="1145"/>
<ROW File="IceBox.xml" Component_="stlport_vc6_stldebug46.pdb" FileName="IceBox.xml" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceBox.xml" SelfReg="false" Sequence="327"/>
- <ROW File="IceBox_IceBox_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceBox~1.py|IceBox_IceBox_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceBox_IceBox_ice.py" SelfReg="false" Sequence="639"/>
+ <ROW File="IceBox_IceBox_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceBox~1.py|IceBox_IceBox_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceBox_IceBox_ice.py" SelfReg="false" Sequence="627"/>
<ROW File="IceGrid.dll" Component_="IceGrid.dll" FileName="IceGrid.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceGrid.dll" SelfReg="false" Sequence="319" DigSign="true"/>
<ROW File="IceGrid.h" Component_="Admin.h" FileName="IceGrid.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\IceGrid.h" SelfReg="false" Sequence="242"/>
<ROW File="IceGrid.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="IceGrid.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceGrid.pdb" SelfReg="false" Sequence="318"/>
- <ROW File="IceGrid.rb" Component_="IceStorm.rb" FileName="IceGrid.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid.rb" SelfReg="false" Sequence="1116"/>
+ <ROW File="IceGrid.rb" Component_="IceStorm.rb" FileName="IceGrid.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid.rb" SelfReg="false" Sequence="1104"/>
<ROW File="IceGrid.xml" Component_="stlport_vc6_stldebug46.pdb" FileName="IceGrid.xml" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceGrid.xml" SelfReg="false" Sequence="328"/>
<ROW File="IceGridAdmin.chm" Component_="IceGridAdmin.chm" FileName="IceGri~1.chm|IceGridAdmin.chm" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\resources\IceGridAdmin.chm" SelfReg="false" Sequence="53"/>
<ROW File="IceGridGUI.jar" Component_="stlport_vc6_stldebug46.pdb" FileName="IceGri~1.jar|IceGridGUI.jar" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\lib\IceGridGUI.jar" SelfReg="false" Sequence="308"/>
- <ROW File="IceGrid_Admin_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~1.py|IceGrid_Admin_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Admin_ice.py" SelfReg="false" Sequence="640"/>
- <ROW File="IceGrid_Descriptor_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~2.py|IceGrid_Descriptor_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Descriptor_ice.py" SelfReg="false" Sequence="641"/>
- <ROW File="IceGrid_Exception_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~3.py|IceGrid_Exception_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Exception_ice.py" SelfReg="false" Sequence="642"/>
- <ROW File="IceGrid_FileParser_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~4.py|IceGrid_FileParser_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_FileParser_ice.py" SelfReg="false" Sequence="643"/>
- <ROW File="IceGrid_Locator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~5.py|IceGrid_Locator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Locator_ice.py" SelfReg="false" Sequence="644"/>
- <ROW File="IceGrid_Observer_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~6.py|IceGrid_Observer_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Observer_ice.py" SelfReg="false" Sequence="645"/>
- <ROW File="IceGrid_Query_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~7.py|IceGrid_Query_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Query_ice.py" SelfReg="false" Sequence="646"/>
- <ROW File="IceGrid_Registry_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~8.py|IceGrid_Registry_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Registry_ice.py" SelfReg="false" Sequence="647"/>
- <ROW File="IceGrid_Session_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~9.py|IceGrid_Session_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Session_ice.py" SelfReg="false" Sequence="648"/>
- <ROW File="IceGrid_UserAccountMapper_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGr~10.py|IceGrid_UserAccountMapper_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_UserAccountMapper_ice.py" SelfReg="false" Sequence="649"/>
+ <ROW File="IceGrid_Admin_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~1.py|IceGrid_Admin_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Admin_ice.py" SelfReg="false" Sequence="628"/>
+ <ROW File="IceGrid_Descriptor_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~2.py|IceGrid_Descriptor_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Descriptor_ice.py" SelfReg="false" Sequence="629"/>
+ <ROW File="IceGrid_Exception_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~3.py|IceGrid_Exception_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Exception_ice.py" SelfReg="false" Sequence="630"/>
+ <ROW File="IceGrid_FileParser_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~4.py|IceGrid_FileParser_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_FileParser_ice.py" SelfReg="false" Sequence="631"/>
+ <ROW File="IceGrid_Locator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~5.py|IceGrid_Locator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Locator_ice.py" SelfReg="false" Sequence="632"/>
+ <ROW File="IceGrid_Observer_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~6.py|IceGrid_Observer_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Observer_ice.py" SelfReg="false" Sequence="633"/>
+ <ROW File="IceGrid_Query_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~7.py|IceGrid_Query_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Query_ice.py" SelfReg="false" Sequence="634"/>
+ <ROW File="IceGrid_Registry_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~8.py|IceGrid_Registry_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Registry_ice.py" SelfReg="false" Sequence="635"/>
+ <ROW File="IceGrid_Session_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGri~9.py|IceGrid_Session_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_Session_ice.py" SelfReg="false" Sequence="636"/>
+ <ROW File="IceGrid_UserAccountMapper_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceGr~10.py|IceGrid_UserAccountMapper_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid_UserAccountMapper_ice.py" SelfReg="false" Sequence="637"/>
<ROW File="IcePatch2.dll" Component_="IcePatch2.dll" FileName="IcePat~1.dll|IcePatch2.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IcePatch2.dll" SelfReg="false" Sequence="321" DigSign="true"/>
<ROW File="IcePatch2.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="IcePat~1.pdb|IcePatch2.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IcePatch2.pdb" SelfReg="false" Sequence="320"/>
- <ROW File="IcePatch2.rb" Component_="IceStorm.rb" FileName="IcePat~1.rb|IcePatch2.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IcePatch2.rb" SelfReg="false" Sequence="1117"/>
+ <ROW File="IcePatch2.rb" Component_="IceStorm.rb" FileName="IcePat~1.rb|IcePatch2.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IcePatch2.rb" SelfReg="false" Sequence="1105"/>
<ROW File="IcePatch2.xml" Component_="stlport_vc6_stldebug46.pdb" FileName="IcePat~1.xml|IcePatch2.xml" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IcePatch2.xml" SelfReg="false" Sequence="329"/>
- <ROW File="IcePatch2_FileInfo_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IcePat~1.py|IcePatch2_FileInfo_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePatch2_FileInfo_ice.py" SelfReg="false" Sequence="650"/>
- <ROW File="IcePatch2_FileServer_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IcePat~2.py|IcePatch2_FileServer_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePatch2_FileServer_ice.py" SelfReg="false" Sequence="651"/>
- <ROW File="IcePy.pyd" Component_="IceStorm_IceStorm_ice.py" FileName="IcePy.pyd" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePy.pyd" SelfReg="false" Sequence="652" DigSign="true"/>
- <ROW File="IceRuby.dll" Component_="IceRuby.dll" FileName="IceRuby.so" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceRuby.so" SelfReg="false" Sequence="1118" DigSign="true"/>
+ <ROW File="IcePatch2_FileInfo_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IcePat~1.py|IcePatch2_FileInfo_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePatch2_FileInfo_ice.py" SelfReg="false" Sequence="638"/>
+ <ROW File="IcePatch2_FileServer_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IcePat~2.py|IcePatch2_FileServer_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePatch2_FileServer_ice.py" SelfReg="false" Sequence="639"/>
+ <ROW File="IcePy.pyd" Component_="IceStorm_IceStorm_ice.py" FileName="IcePy.pyd" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePy.pyd" SelfReg="false" Sequence="640" DigSign="true"/>
+ <ROW File="IceRuby.dll" Component_="IceRuby.dll" FileName="IceRuby.so" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceRuby.so" SelfReg="false" Sequence="1106" DigSign="true"/>
<ROW File="IceSSL.dll" Component_="IceSSL.dll" FileName="IceSSL.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceSSL.dll" SelfReg="false" Sequence="323" DigSign="true"/>
<ROW File="IceSSL.h" Component_="ConnectionInfo.h" FileName="IceSSL.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceSSL\IceSSL.h" SelfReg="false" Sequence="256"/>
<ROW File="IceSSL.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="IceSSL.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceSSL.pdb" SelfReg="false" Sequence="322"/>
@@ -546,59 +546,59 @@
<ROW File="IceStorm.h" Component_="IceStorm.h" FileName="IceStorm.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceStorm\IceStorm.h" SelfReg="false" Sequence="258"/>
<ROW File="IceStorm.ice" Component_="IceStorm.ice" FileName="IceStorm.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceStorm\IceStorm.ice" SelfReg="false" Sequence="121"/>
<ROW File="IceStorm.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="IceStorm.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceStorm.pdb" SelfReg="false" Sequence="324"/>
- <ROW File="IceStorm.rb" Component_="IceStorm.rb" FileName="IceStorm.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceStorm.rb" SelfReg="false" Sequence="1112"/>
- <ROW File="IceStorm.rb_1" Component_="IceStorm.rb_1" FileName="IceStorm.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceStorm\IceStorm.rb" SelfReg="false" Sequence="1168"/>
+ <ROW File="IceStorm.rb" Component_="IceStorm.rb" FileName="IceStorm.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceStorm.rb" SelfReg="false" Sequence="1100"/>
+ <ROW File="IceStorm.rb_1" Component_="IceStorm.rb_1" FileName="IceStorm.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceStorm\IceStorm.rb" SelfReg="false" Sequence="1156"/>
<ROW File="IceStorm.xml" Component_="stlport_vc6_stldebug46.pdb" FileName="IceStorm.xml" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\IceStorm.xml" SelfReg="false" Sequence="331"/>
- <ROW File="IceStorm_IceStorm_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceSto~1.py|IceStorm_IceStorm_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceStorm_IceStorm_ice.py" SelfReg="false" Sequence="595"/>
+ <ROW File="IceStorm_IceStorm_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="IceSto~1.py|IceStorm_IceStorm_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceStorm_IceStorm_ice.py" SelfReg="false" Sequence="583"/>
<ROW File="IceUtil.h" Component_="AbstractMutex.h" FileName="IceUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\IceUtil.h" SelfReg="false" Sequence="271"/>
- <ROW File="IceVisualStudioAddin_VS2008.dll" Component_="IceVisualStudioAddin_VS2008.dll" FileName="IceVis~1.dll|IceVisualStudioAddin-VS2008.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\bin\IceVisualStudioAddin-VS2008.dll" SelfReg="false" Sequence="1093" DigSign="true"/>
- <ROW File="Ice_3.4b_demos.zip" Component_="THIRD_PARTY_SOURCES.txt" FileName="Ice-34~1.zip|Ice-3.4b-demos.zip" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;distfiles\Ice-3.4b-demos.zip" SelfReg="false" Sequence="1086"/>
- <ROW File="Ice_BuiltinSequences_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Bu~1.py|Ice_BuiltinSequences_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_BuiltinSequences_ice.py" SelfReg="false" Sequence="604"/>
- <ROW File="Ice_CommunicatorF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~2.py|Ice_CommunicatorF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_CommunicatorF_ice.py" SelfReg="false" Sequence="606"/>
- <ROW File="Ice_Communicator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~1.py|Ice_Communicator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Communicator_ice.py" SelfReg="false" Sequence="605"/>
- <ROW File="Ice_ConnectionF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~4.py|Ice_ConnectionF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ConnectionF_ice.py" SelfReg="false" Sequence="608"/>
- <ROW File="Ice_Connection_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~3.py|Ice_Connection_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Connection_ice.py" SelfReg="false" Sequence="607"/>
- <ROW File="Ice_Current_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Cu~1.py|Ice_Current_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Current_ice.py" SelfReg="false" Sequence="609"/>
- <ROW File="Ice_EndpointF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_En~2.py|Ice_EndpointF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_EndpointF_ice.py" SelfReg="false" Sequence="611"/>
- <ROW File="Ice_EndpointTypes_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_En~3.py|Ice_EndpointTypes_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_EndpointTypes_ice.py" SelfReg="false" Sequence="612"/>
- <ROW File="Ice_Endpoint_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_En~1.py|Ice_Endpoint_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Endpoint_ice.py" SelfReg="false" Sequence="610"/>
- <ROW File="Ice_FacetMap_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Fa~1.py|Ice_FacetMap_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_FacetMap_ice.py" SelfReg="false" Sequence="613"/>
- <ROW File="Ice_Identity_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Id~1.py|Ice_Identity_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Identity_ice.py" SelfReg="false" Sequence="614"/>
- <ROW File="Ice_ImplicitContextF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Im~2.py|Ice_ImplicitContextF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ImplicitContextF_ice.py" SelfReg="false" Sequence="616"/>
- <ROW File="Ice_ImplicitContext_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Im~1.py|Ice_ImplicitContext_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ImplicitContext_ice.py" SelfReg="false" Sequence="615"/>
- <ROW File="Ice_LocalException_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~1.py|Ice_LocalException_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_LocalException_ice.py" SelfReg="false" Sequence="617"/>
- <ROW File="Ice_LocatorF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~3.py|Ice_LocatorF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_LocatorF_ice.py" SelfReg="false" Sequence="619"/>
- <ROW File="Ice_Locator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~2.py|Ice_Locator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Locator_ice.py" SelfReg="false" Sequence="618"/>
- <ROW File="Ice_LoggerF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~5.py|Ice_LoggerF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_LoggerF_ice.py" SelfReg="false" Sequence="621"/>
- <ROW File="Ice_Logger_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~4.py|Ice_Logger_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Logger_ice.py" SelfReg="false" Sequence="620"/>
- <ROW File="Ice_ObjectAdapterF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~2.py|Ice_ObjectAdapterF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectAdapterF_ice.py" SelfReg="false" Sequence="623"/>
- <ROW File="Ice_ObjectAdapter_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~1.py|Ice_ObjectAdapter_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectAdapter_ice.py" SelfReg="false" Sequence="622"/>
- <ROW File="Ice_ObjectFactoryF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~4.py|Ice_ObjectFactoryF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectFactoryF_ice.py" SelfReg="false" Sequence="625"/>
- <ROW File="Ice_ObjectFactory_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~3.py|Ice_ObjectFactory_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectFactory_ice.py" SelfReg="false" Sequence="624"/>
- <ROW File="Ice_PluginF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pl~2.py|Ice_PluginF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_PluginF_ice.py" SelfReg="false" Sequence="627"/>
- <ROW File="Ice_Plugin_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pl~1.py|Ice_Plugin_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Plugin_ice.py" SelfReg="false" Sequence="626"/>
- <ROW File="Ice_ProcessF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~2.py|Ice_ProcessF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ProcessF_ice.py" SelfReg="false" Sequence="629"/>
- <ROW File="Ice_Process_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~1.py|Ice_Process_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Process_ice.py" SelfReg="false" Sequence="628"/>
- <ROW File="Ice_PropertiesF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~4.py|Ice_PropertiesF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_PropertiesF_ice.py" SelfReg="false" Sequence="631"/>
- <ROW File="Ice_Properties_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~3.py|Ice_Properties_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Properties_ice.py" SelfReg="false" Sequence="630"/>
- <ROW File="Ice_RouterF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ro~2.py|Ice_RouterF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_RouterF_ice.py" SelfReg="false" Sequence="633"/>
- <ROW File="Ice_Router_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ro~1.py|Ice_Router_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Router_ice.py" SelfReg="false" Sequence="632"/>
- <ROW File="Ice_ServantLocatorF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Se~2.py|Ice_ServantLocatorF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ServantLocatorF_ice.py" SelfReg="false" Sequence="635"/>
- <ROW File="Ice_ServantLocator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Se~1.py|Ice_ServantLocator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ServantLocator_ice.py" SelfReg="false" Sequence="634"/>
- <ROW File="Ice_SliceChecksumDict_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Sl~1.py|Ice_SliceChecksumDict_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_SliceChecksumDict_ice.py" SelfReg="false" Sequence="636"/>
- <ROW File="Ice_StatsF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_St~2.py|Ice_StatsF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_StatsF_ice.py" SelfReg="false" Sequence="638"/>
- <ROW File="Ice_Stats_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_St~1.py|Ice_Stats_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Stats_ice.py" SelfReg="false" Sequence="637"/>
+ <ROW File="IceVisualStudioAddin_VS2008.dll" Component_="IceVisualStudioAddin_VS2008.dll" FileName="IceVis~1.dll|IceVisualStudioAddin-VS2008.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\bin\IceVisualStudioAddin-VS2008.dll" SelfReg="false" Sequence="1081" DigSign="true"/>
+ <ROW File="Ice_3.4b_demos.zip" Component_="THIRD_PARTY_SOURCES.txt" FileName="Ice-34~1.zip|Ice-3.4b-demos.zip" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;distfiles\Ice-3.4b-demos.zip" SelfReg="false" Sequence="1074"/>
+ <ROW File="Ice_BuiltinSequences_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Bu~1.py|Ice_BuiltinSequences_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_BuiltinSequences_ice.py" SelfReg="false" Sequence="592"/>
+ <ROW File="Ice_CommunicatorF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~2.py|Ice_CommunicatorF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_CommunicatorF_ice.py" SelfReg="false" Sequence="594"/>
+ <ROW File="Ice_Communicator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~1.py|Ice_Communicator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Communicator_ice.py" SelfReg="false" Sequence="593"/>
+ <ROW File="Ice_ConnectionF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~4.py|Ice_ConnectionF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ConnectionF_ice.py" SelfReg="false" Sequence="596"/>
+ <ROW File="Ice_Connection_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Co~3.py|Ice_Connection_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Connection_ice.py" SelfReg="false" Sequence="595"/>
+ <ROW File="Ice_Current_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Cu~1.py|Ice_Current_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Current_ice.py" SelfReg="false" Sequence="597"/>
+ <ROW File="Ice_EndpointF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_En~2.py|Ice_EndpointF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_EndpointF_ice.py" SelfReg="false" Sequence="599"/>
+ <ROW File="Ice_EndpointTypes_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_En~3.py|Ice_EndpointTypes_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_EndpointTypes_ice.py" SelfReg="false" Sequence="600"/>
+ <ROW File="Ice_Endpoint_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_En~1.py|Ice_Endpoint_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Endpoint_ice.py" SelfReg="false" Sequence="598"/>
+ <ROW File="Ice_FacetMap_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Fa~1.py|Ice_FacetMap_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_FacetMap_ice.py" SelfReg="false" Sequence="601"/>
+ <ROW File="Ice_Identity_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Id~1.py|Ice_Identity_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Identity_ice.py" SelfReg="false" Sequence="602"/>
+ <ROW File="Ice_ImplicitContextF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Im~2.py|Ice_ImplicitContextF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ImplicitContextF_ice.py" SelfReg="false" Sequence="604"/>
+ <ROW File="Ice_ImplicitContext_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Im~1.py|Ice_ImplicitContext_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ImplicitContext_ice.py" SelfReg="false" Sequence="603"/>
+ <ROW File="Ice_LocalException_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~1.py|Ice_LocalException_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_LocalException_ice.py" SelfReg="false" Sequence="605"/>
+ <ROW File="Ice_LocatorF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~3.py|Ice_LocatorF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_LocatorF_ice.py" SelfReg="false" Sequence="607"/>
+ <ROW File="Ice_Locator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~2.py|Ice_Locator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Locator_ice.py" SelfReg="false" Sequence="606"/>
+ <ROW File="Ice_LoggerF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~5.py|Ice_LoggerF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_LoggerF_ice.py" SelfReg="false" Sequence="609"/>
+ <ROW File="Ice_Logger_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Lo~4.py|Ice_Logger_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Logger_ice.py" SelfReg="false" Sequence="608"/>
+ <ROW File="Ice_ObjectAdapterF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~2.py|Ice_ObjectAdapterF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectAdapterF_ice.py" SelfReg="false" Sequence="611"/>
+ <ROW File="Ice_ObjectAdapter_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~1.py|Ice_ObjectAdapter_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectAdapter_ice.py" SelfReg="false" Sequence="610"/>
+ <ROW File="Ice_ObjectFactoryF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~4.py|Ice_ObjectFactoryF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectFactoryF_ice.py" SelfReg="false" Sequence="613"/>
+ <ROW File="Ice_ObjectFactory_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ob~3.py|Ice_ObjectFactory_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ObjectFactory_ice.py" SelfReg="false" Sequence="612"/>
+ <ROW File="Ice_PluginF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pl~2.py|Ice_PluginF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_PluginF_ice.py" SelfReg="false" Sequence="615"/>
+ <ROW File="Ice_Plugin_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pl~1.py|Ice_Plugin_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Plugin_ice.py" SelfReg="false" Sequence="614"/>
+ <ROW File="Ice_ProcessF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~2.py|Ice_ProcessF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ProcessF_ice.py" SelfReg="false" Sequence="617"/>
+ <ROW File="Ice_Process_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~1.py|Ice_Process_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Process_ice.py" SelfReg="false" Sequence="616"/>
+ <ROW File="Ice_PropertiesF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~4.py|Ice_PropertiesF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_PropertiesF_ice.py" SelfReg="false" Sequence="619"/>
+ <ROW File="Ice_Properties_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Pr~3.py|Ice_Properties_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Properties_ice.py" SelfReg="false" Sequence="618"/>
+ <ROW File="Ice_RouterF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ro~2.py|Ice_RouterF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_RouterF_ice.py" SelfReg="false" Sequence="621"/>
+ <ROW File="Ice_Router_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Ro~1.py|Ice_Router_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Router_ice.py" SelfReg="false" Sequence="620"/>
+ <ROW File="Ice_ServantLocatorF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Se~2.py|Ice_ServantLocatorF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ServantLocatorF_ice.py" SelfReg="false" Sequence="623"/>
+ <ROW File="Ice_ServantLocator_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Se~1.py|Ice_ServantLocator_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_ServantLocator_ice.py" SelfReg="false" Sequence="622"/>
+ <ROW File="Ice_SliceChecksumDict_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_Sl~1.py|Ice_SliceChecksumDict_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_SliceChecksumDict_ice.py" SelfReg="false" Sequence="624"/>
+ <ROW File="Ice_StatsF_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_St~2.py|Ice_StatsF_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_StatsF_ice.py" SelfReg="false" Sequence="626"/>
+ <ROW File="Ice_Stats_ice.py" Component_="IceStorm_IceStorm_ice.py" FileName="Ice_St~1.py|Ice_Stats_ice.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\Ice_Stats_ice.py" SelfReg="false" Sequence="625"/>
<ROW File="IconvStringConverter.h" Component_="Application.h_1" FileName="IconvS~1.h|IconvStringConverter.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\IconvStringConverter.h" SelfReg="false" Sequence="180"/>
<ROW File="Identity.h" Component_="Application.h_1" FileName="Identity.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Identity.h" SelfReg="false" Sequence="181"/>
<ROW File="Identity.ice" Component_="StatsF.ice" FileName="Identity.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Identity.ice" SelfReg="false" Sequence="82"/>
- <ROW File="Identity.rb" Component_="StatsF.rb" FileName="Identity.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Identity.rb" SelfReg="false" Sequence="1136"/>
+ <ROW File="Identity.rb" Component_="StatsF.rb" FileName="Identity.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Identity.rb" SelfReg="false" Sequence="1124"/>
<ROW File="ImplicitContext.h" Component_="Application.h_1" FileName="Implic~1.h|ImplicitContext.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ImplicitContext.h" SelfReg="false" Sequence="182"/>
<ROW File="ImplicitContext.ice" Component_="StatsF.ice" FileName="Implic~1.ice|ImplicitContext.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ImplicitContext.ice" SelfReg="false" Sequence="83"/>
- <ROW File="ImplicitContext.rb" Component_="StatsF.rb" FileName="Implic~1.rb|ImplicitContext.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ImplicitContext.rb" SelfReg="false" Sequence="1137"/>
+ <ROW File="ImplicitContext.rb" Component_="StatsF.rb" FileName="Implic~1.rb|ImplicitContext.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ImplicitContext.rb" SelfReg="false" Sequence="1125"/>
<ROW File="ImplicitContextF.h" Component_="Application.h_1" FileName="Implic~2.h|ImplicitContextF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ImplicitContextF.h" SelfReg="false" Sequence="183"/>
<ROW File="ImplicitContextF.ice" Component_="StatsF.ice" FileName="Implic~2.ice|ImplicitContextF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ImplicitContextF.ice" SelfReg="false" Sequence="84"/>
- <ROW File="ImplicitContextF.rb" Component_="StatsF.rb" FileName="Implic~2.rb|ImplicitContextF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ImplicitContextF.rb" SelfReg="false" Sequence="1138"/>
- <ROW File="ImportKey.class" Component_="Ice.jar" FileName="Import~1.cla|ImportKey.class" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\ImportKey.class" SelfReg="false" Sequence="524"/>
+ <ROW File="ImplicitContextF.rb" Component_="StatsF.rb" FileName="Implic~2.rb|ImplicitContextF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ImplicitContextF.rb" SelfReg="false" Sequence="1126"/>
+ <ROW File="ImportKey.class" Component_="Ice.jar" FileName="Import~1.cla|ImportKey.class" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\ImportKey.class" SelfReg="false" Sequence="512"/>
<ROW File="Incoming.h" Component_="Application.h_1" FileName="Incoming.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Incoming.h" SelfReg="false" Sequence="184"/>
<ROW File="IncomingAsync.h" Component_="Application.h_1" FileName="Incomi~1.h|IncomingAsync.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\IncomingAsync.h" SelfReg="false" Sequence="185"/>
<ROW File="IncomingAsyncF.h" Component_="Application.h_1" FileName="Incomi~2.h|IncomingAsyncF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\IncomingAsyncF.h" SelfReg="false" Sequence="186"/>
@@ -609,28 +609,28 @@
<ROW File="InstanceF.h" Component_="Application.h_1" FileName="Instan~1.h|InstanceF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\InstanceF.h" SelfReg="false" Sequence="188"/>
<ROW File="Iterator.h" Component_="AbstractMutex.h" FileName="Iterator.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Iterator.h" SelfReg="false" Sequence="273"/>
<ROW File="JavaUtil.h" Component_="Checksum.h" FileName="JavaUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Slice\JavaUtil.h" SelfReg="false" Sequence="301"/>
- <ROW File="LICENSE.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="LICENSE.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\LICENSE.txt" SelfReg="false" Sequence="1073"/>
+ <ROW File="LICENSE.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="LICENSE.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\LICENSE.txt" SelfReg="false" Sequence="1061"/>
<ROW File="LocalException.h" Component_="Application.h_1" FileName="LocalE~1.h|LocalException.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\LocalException.h" SelfReg="false" Sequence="189"/>
<ROW File="LocalException.ice" Component_="StatsF.ice" FileName="LocalE~1.ice|LocalException.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\LocalException.ice" SelfReg="false" Sequence="85"/>
- <ROW File="LocalException.rb" Component_="StatsF.rb" FileName="LocalE~1.rb|LocalException.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\LocalException.rb" SelfReg="false" Sequence="1139"/>
+ <ROW File="LocalException.rb" Component_="StatsF.rb" FileName="LocalE~1.rb|LocalException.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\LocalException.rb" SelfReg="false" Sequence="1127"/>
<ROW File="LocalObject.h" Component_="Application.h_1" FileName="LocalO~1.h|LocalObject.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\LocalObject.h" SelfReg="false" Sequence="190"/>
<ROW File="LocalObjectF.h" Component_="Application.h_1" FileName="LocalO~2.h|LocalObjectF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\LocalObjectF.h" SelfReg="false" Sequence="191"/>
<ROW File="Locator.h" Component_="Application.h_1" FileName="Locator.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Locator.h" SelfReg="false" Sequence="192"/>
<ROW File="Locator.h_1" Component_="Admin.h" FileName="Locator.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Locator.h" SelfReg="false" Sequence="243"/>
<ROW File="Locator.ice" Component_="StatsF.ice" FileName="Locator.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Locator.ice" SelfReg="false" Sequence="86"/>
<ROW File="Locator.ice_1" Component_="UserAccountMapper.ice" FileName="Locator.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Locator.ice" SelfReg="false" Sequence="112"/>
- <ROW File="Locator.rb" Component_="StatsF.rb" FileName="Locator.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Locator.rb" SelfReg="false" Sequence="1140"/>
- <ROW File="Locator.rb_1" Component_="UserAccountMapper.rb" FileName="Locator.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Locator.rb" SelfReg="false" Sequence="1163"/>
+ <ROW File="Locator.rb" Component_="StatsF.rb" FileName="Locator.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Locator.rb" SelfReg="false" Sequence="1128"/>
+ <ROW File="Locator.rb_1" Component_="UserAccountMapper.rb" FileName="Locator.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Locator.rb" SelfReg="false" Sequence="1151"/>
<ROW File="LocatorF.h" Component_="Application.h_1" FileName="LocatorF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\LocatorF.h" SelfReg="false" Sequence="193"/>
<ROW File="LocatorF.ice" Component_="StatsF.ice" FileName="LocatorF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\LocatorF.ice" SelfReg="false" Sequence="87"/>
- <ROW File="LocatorF.rb" Component_="StatsF.rb" FileName="LocatorF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\LocatorF.rb" SelfReg="false" Sequence="1141"/>
+ <ROW File="LocatorF.rb" Component_="StatsF.rb" FileName="LocatorF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\LocatorF.rb" SelfReg="false" Sequence="1129"/>
<ROW File="Lock.h" Component_="AbstractMutex.h" FileName="Lock.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Lock.h" SelfReg="false" Sequence="274"/>
<ROW File="Logger.h" Component_="Application.h_1" FileName="Logger.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Logger.h" SelfReg="false" Sequence="194"/>
<ROW File="Logger.ice" Component_="StatsF.ice" FileName="Logger.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Logger.ice" SelfReg="false" Sequence="88"/>
- <ROW File="Logger.rb" Component_="StatsF.rb" FileName="Logger.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Logger.rb" SelfReg="false" Sequence="1142"/>
+ <ROW File="Logger.rb" Component_="StatsF.rb" FileName="Logger.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Logger.rb" SelfReg="false" Sequence="1130"/>
<ROW File="LoggerF.h" Component_="Application.h_1" FileName="LoggerF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\LoggerF.h" SelfReg="false" Sequence="195"/>
<ROW File="LoggerF.ice" Component_="StatsF.ice" FileName="LoggerF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\LoggerF.ice" SelfReg="false" Sequence="89"/>
- <ROW File="LoggerF.rb" Component_="StatsF.rb" FileName="LoggerF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\LoggerF.rb" SelfReg="false" Sequence="1143"/>
+ <ROW File="LoggerF.rb" Component_="StatsF.rb" FileName="LoggerF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\LoggerF.rb" SelfReg="false" Sequence="1131"/>
<ROW File="LoggerUtil.h" Component_="Application.h_1" FileName="Logger~1.h|LoggerUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\LoggerUtil.h" SelfReg="false" Sequence="196"/>
<ROW File="Map.h" Component_="TransactionHolder.h" FileName="Map.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Freeze\Map.h" SelfReg="false" Sequence="137"/>
<ROW File="Monitor.h" Component_="AbstractMutex.h" FileName="Monitor.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Monitor.h" SelfReg="false" Sequence="275"/>
@@ -643,18 +643,18 @@
<ROW File="ObjectAdapter.ice" Component_="StatsF.ice" FileName="Object~1.ice|ObjectAdapter.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ObjectAdapter.ice" SelfReg="false" Sequence="90"/>
<ROW File="ObjectAdapterF.h" Component_="Application.h_1" FileName="Object~2.h|ObjectAdapterF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ObjectAdapterF.h" SelfReg="false" Sequence="199"/>
<ROW File="ObjectAdapterF.ice" Component_="StatsF.ice" FileName="Object~2.ice|ObjectAdapterF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ObjectAdapterF.ice" SelfReg="false" Sequence="91"/>
- <ROW File="ObjectAdapterF.rb" Component_="StatsF.rb" FileName="Object~1.rb|ObjectAdapterF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ObjectAdapterF.rb" SelfReg="false" Sequence="1144"/>
+ <ROW File="ObjectAdapterF.rb" Component_="StatsF.rb" FileName="Object~1.rb|ObjectAdapterF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ObjectAdapterF.rb" SelfReg="false" Sequence="1132"/>
<ROW File="ObjectAdapterFactoryF.h" Component_="Application.h_1" FileName="Object~3.h|ObjectAdapterFactoryF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ObjectAdapterFactoryF.h" SelfReg="false" Sequence="200"/>
<ROW File="ObjectF.h" Component_="Application.h_1" FileName="ObjectF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ObjectF.h" SelfReg="false" Sequence="201"/>
<ROW File="ObjectFactory.h" Component_="Application.h_1" FileName="Object~4.h|ObjectFactory.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ObjectFactory.h" SelfReg="false" Sequence="202"/>
<ROW File="ObjectFactory.ice" Component_="StatsF.ice" FileName="Object~3.ice|ObjectFactory.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ObjectFactory.ice" SelfReg="false" Sequence="92"/>
- <ROW File="ObjectFactory.rb" Component_="StatsF.rb" FileName="Object~2.rb|ObjectFactory.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ObjectFactory.rb" SelfReg="false" Sequence="1145"/>
+ <ROW File="ObjectFactory.rb" Component_="StatsF.rb" FileName="Object~2.rb|ObjectFactory.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ObjectFactory.rb" SelfReg="false" Sequence="1133"/>
<ROW File="ObjectFactoryF.h" Component_="Application.h_1" FileName="Object~5.h|ObjectFactoryF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ObjectFactoryF.h" SelfReg="false" Sequence="203"/>
<ROW File="ObjectFactoryF.ice" Component_="StatsF.ice" FileName="Object~4.ice|ObjectFactoryF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ObjectFactoryF.ice" SelfReg="false" Sequence="93"/>
- <ROW File="ObjectFactoryF.rb" Component_="StatsF.rb" FileName="Object~3.rb|ObjectFactoryF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ObjectFactoryF.rb" SelfReg="false" Sequence="1146"/>
+ <ROW File="ObjectFactoryF.rb" Component_="StatsF.rb" FileName="Object~3.rb|ObjectFactoryF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ObjectFactoryF.rb" SelfReg="false" Sequence="1134"/>
<ROW File="Observer.h" Component_="Admin.h" FileName="Observer.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Observer.h" SelfReg="false" Sequence="244"/>
<ROW File="Observer.ice" Component_="UserAccountMapper.ice" FileName="Observer.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Observer.ice" SelfReg="false" Sequence="113"/>
- <ROW File="Observer.rb" Component_="UserAccountMapper.rb" FileName="Observer.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Observer.rb" SelfReg="false" Sequence="1164"/>
+ <ROW File="Observer.rb" Component_="UserAccountMapper.rb" FileName="Observer.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Observer.rb" SelfReg="false" Sequence="1152"/>
<ROW File="Options.h" Component_="AbstractMutex.h" FileName="Options.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Options.h" SelfReg="false" Sequence="280"/>
<ROW File="Outgoing.h" Component_="Application.h_1" FileName="Outgoing.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Outgoing.h" SelfReg="false" Sequence="204"/>
<ROW File="OutgoingAsync.h" Component_="Application.h_1" FileName="Outgoi~1.h|OutgoingAsync.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\OutgoingAsync.h" SelfReg="false" Sequence="205"/>
@@ -666,30 +666,30 @@
<ROW File="Perf.h" Component_="Admin.h" FileName="Perf.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Perf.h" SelfReg="false" Sequence="245"/>
<ROW File="PermissionsVerifier.h" Component_="Application.h" FileName="Permis~1.h|PermissionsVerifier.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Glacier2\PermissionsVerifier.h" SelfReg="false" Sequence="142"/>
<ROW File="PermissionsVerifier.ice" Component_="SSLInfo.ice" FileName="Permis~1.ice|PermissionsVerifier.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Glacier2\PermissionsVerifier.ice" SelfReg="false" Sequence="66"/>
- <ROW File="PermissionsVerifier.rb" Component_="SSLInfo.rb" FileName="Permis~1.rb|PermissionsVerifier.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\PermissionsVerifier.rb" SelfReg="false" Sequence="1120"/>
+ <ROW File="PermissionsVerifier.rb" Component_="SSLInfo.rb" FileName="Permis~1.rb|PermissionsVerifier.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\PermissionsVerifier.rb" SelfReg="false" Sequence="1108"/>
<ROW File="PermissionsVerifierF.h" Component_="Application.h" FileName="Permis~2.h|PermissionsVerifierF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Glacier2\PermissionsVerifierF.h" SelfReg="false" Sequence="143"/>
<ROW File="PermissionsVerifierF.ice" Component_="SSLInfo.ice" FileName="Permis~2.ice|PermissionsVerifierF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Glacier2\PermissionsVerifierF.ice" SelfReg="false" Sequence="67"/>
- <ROW File="PermissionsVerifierF.rb" Component_="SSLInfo.rb" FileName="Permis~2.rb|PermissionsVerifierF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\PermissionsVerifierF.rb" SelfReg="false" Sequence="1121"/>
+ <ROW File="PermissionsVerifierF.rb" Component_="SSLInfo.rb" FileName="Permis~2.rb|PermissionsVerifierF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\PermissionsVerifierF.rb" SelfReg="false" Sequence="1109"/>
<ROW File="Plugin.h" Component_="Application.h_1" FileName="Plugin.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Plugin.h" SelfReg="false" Sequence="207"/>
<ROW File="Plugin.h_1" Component_="ConnectionInfo.h" FileName="Plugin.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceSSL\Plugin.h" SelfReg="false" Sequence="257"/>
<ROW File="Plugin.ice" Component_="StatsF.ice" FileName="Plugin.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Plugin.ice" SelfReg="false" Sequence="94"/>
- <ROW File="Plugin.rb" Component_="StatsF.rb" FileName="Plugin.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Plugin.rb" SelfReg="false" Sequence="1147"/>
+ <ROW File="Plugin.rb" Component_="StatsF.rb" FileName="Plugin.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Plugin.rb" SelfReg="false" Sequence="1135"/>
<ROW File="PluginF.h" Component_="Application.h_1" FileName="PluginF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\PluginF.h" SelfReg="false" Sequence="208"/>
<ROW File="PluginF.ice" Component_="StatsF.ice" FileName="PluginF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\PluginF.ice" SelfReg="false" Sequence="95"/>
- <ROW File="PluginF.rb" Component_="StatsF.rb" FileName="PluginF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\PluginF.rb" SelfReg="false" Sequence="1148"/>
+ <ROW File="PluginF.rb" Component_="StatsF.rb" FileName="PluginF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\PluginF.rb" SelfReg="false" Sequence="1136"/>
<ROW File="Preprocessor.h" Component_="Checksum.h" FileName="Prepro~1.h|Preprocessor.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Slice\Preprocessor.h" SelfReg="false" Sequence="304"/>
<ROW File="Process.h" Component_="Application.h_1" FileName="Process.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Process.h" SelfReg="false" Sequence="209"/>
<ROW File="Process.ice" Component_="StatsF.ice" FileName="Process.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Process.ice" SelfReg="false" Sequence="96"/>
- <ROW File="Process.rb" Component_="StatsF.rb" FileName="Process.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Process.rb" SelfReg="false" Sequence="1149"/>
+ <ROW File="Process.rb" Component_="StatsF.rb" FileName="Process.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Process.rb" SelfReg="false" Sequence="1137"/>
<ROW File="ProcessF.h" Component_="Application.h_1" FileName="ProcessF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ProcessF.h" SelfReg="false" Sequence="210"/>
<ROW File="ProcessF.ice" Component_="StatsF.ice" FileName="ProcessF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ProcessF.ice" SelfReg="false" Sequence="97"/>
- <ROW File="ProcessF.rb" Component_="StatsF.rb" FileName="ProcessF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ProcessF.rb" SelfReg="false" Sequence="1150"/>
+ <ROW File="ProcessF.rb" Component_="StatsF.rb" FileName="ProcessF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\ProcessF.rb" SelfReg="false" Sequence="1138"/>
<ROW File="Properties.h" Component_="Application.h_1" FileName="Proper~1.h|Properties.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Properties.h" SelfReg="false" Sequence="211"/>
<ROW File="Properties.ice" Component_="StatsF.ice" FileName="Proper~1.ice|Properties.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Properties.ice" SelfReg="false" Sequence="98"/>
- <ROW File="Properties.rb" Component_="StatsF.rb" FileName="Proper~1.rb|Properties.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Properties.rb" SelfReg="false" Sequence="1151"/>
+ <ROW File="Properties.rb" Component_="StatsF.rb" FileName="Proper~1.rb|Properties.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Properties.rb" SelfReg="false" Sequence="1139"/>
<ROW File="PropertiesF.h" Component_="Application.h_1" FileName="Proper~2.h|PropertiesF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\PropertiesF.h" SelfReg="false" Sequence="212"/>
<ROW File="PropertiesF.ice" Component_="StatsF.ice" FileName="Proper~2.ice|PropertiesF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\PropertiesF.ice" SelfReg="false" Sequence="99"/>
- <ROW File="PropertiesF.rb" Component_="StatsF.rb" FileName="Proper~2.rb|PropertiesF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\PropertiesF.rb" SelfReg="false" Sequence="1152"/>
+ <ROW File="PropertiesF.rb" Component_="StatsF.rb" FileName="Proper~2.rb|PropertiesF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\PropertiesF.rb" SelfReg="false" Sequence="1140"/>
<ROW File="Protocol.h" Component_="Application.h_1" FileName="Protocol.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Protocol.h" SelfReg="false" Sequence="213"/>
<ROW File="ProtocolPluginFacade.h" Component_="Application.h_1" FileName="Protoc~1.h|ProtocolPluginFacade.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ProtocolPluginFacade.h" SelfReg="false" Sequence="214"/>
<ROW File="ProtocolPluginFacadeF.h" Component_="Application.h_1" FileName="Protoc~2.h|ProtocolPluginFacadeF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ProtocolPluginFacadeF.h" SelfReg="false" Sequence="215"/>
@@ -698,46 +698,46 @@
<ROW File="ProxyFactoryF.h" Component_="Application.h_1" FileName="ProxyF~1.h|ProxyFactoryF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ProxyFactoryF.h" SelfReg="false" Sequence="218"/>
<ROW File="ProxyHandle.h" Component_="Application.h_1" FileName="ProxyH~1.h|ProxyHandle.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ProxyHandle.h" SelfReg="false" Sequence="219"/>
<ROW File="PythonUtil.h" Component_="Checksum.h" FileName="Python~1.h|PythonUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Slice\PythonUtil.h" SelfReg="false" Sequence="305"/>
- <ROW File="QtCore4.dll" Component_="QtCore4.dll" FileName="QtCore4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtCore4.dll" SelfReg="false" Sequence="1105" DigSign="true"/>
- <ROW File="QtCore4.dll_1" Component_="QtCore4.dll_1" FileName="QtCore4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtCore4.dll" SelfReg="false" Sequence="1109" DigSign="true"/>
- <ROW File="QtCored4.dll" Component_="QtCored4.dll" FileName="QtCored4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtCored4.dll" SelfReg="false" Sequence="1106" DigSign="true"/>
- <ROW File="QtCored4.dll_1" Component_="QtCored4.dll_1" FileName="QtCored4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtCored4.dll" SelfReg="false" Sequence="1110" DigSign="true"/>
- <ROW File="QtSql4.dll" Component_="QtSql4.dll" FileName="QtSql4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtSql4.dll" SelfReg="false" Sequence="1107" DigSign="true"/>
- <ROW File="QtSql4.dll_1" Component_="QtSql4.dll_1" FileName="QtSql4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtSql4.dll" SelfReg="false" Sequence="1111" DigSign="true"/>
- <ROW File="QtSqld4.dll" Component_="QtSqld4.dll" FileName="QtSqld4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtSqld4.dll" SelfReg="false" Sequence="1104" DigSign="true"/>
- <ROW File="QtSqld4.dll_1" Component_="QtSqld4.dll_1" FileName="QtSqld4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtSqld4.dll" SelfReg="false" Sequence="1108" DigSign="true"/>
+ <ROW File="QtCore4.dll" Component_="QtCore4.dll" FileName="QtCore4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtCore4.dll" SelfReg="false" Sequence="1093" DigSign="true"/>
+ <ROW File="QtCore4.dll_1" Component_="QtCore4.dll_1" FileName="QtCore4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtCore4.dll" SelfReg="false" Sequence="1097" DigSign="true"/>
+ <ROW File="QtCored4.dll" Component_="QtCored4.dll" FileName="QtCored4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtCored4.dll" SelfReg="false" Sequence="1094" DigSign="true"/>
+ <ROW File="QtCored4.dll_1" Component_="QtCored4.dll_1" FileName="QtCored4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtCored4.dll" SelfReg="false" Sequence="1098" DigSign="true"/>
+ <ROW File="QtSql4.dll" Component_="QtSql4.dll" FileName="QtSql4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtSql4.dll" SelfReg="false" Sequence="1095" DigSign="true"/>
+ <ROW File="QtSql4.dll_1" Component_="QtSql4.dll_1" FileName="QtSql4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtSql4.dll" SelfReg="false" Sequence="1099" DigSign="true"/>
+ <ROW File="QtSqld4.dll" Component_="QtSqld4.dll" FileName="QtSqld4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\QtSqld4.dll" SelfReg="false" Sequence="1092" DigSign="true"/>
+ <ROW File="QtSqld4.dll_1" Component_="QtSqld4.dll_1" FileName="QtSqld4.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\QtSqld4.dll" SelfReg="false" Sequence="1096" DigSign="true"/>
<ROW File="Query.h" Component_="Admin.h" FileName="Query.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Query.h" SelfReg="false" Sequence="246"/>
<ROW File="Query.ice" Component_="UserAccountMapper.ice" FileName="Query.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Query.ice" SelfReg="false" Sequence="114"/>
- <ROW File="Query.rb" Component_="UserAccountMapper.rb" FileName="Query.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Query.rb" SelfReg="false" Sequence="1165"/>
- <ROW File="README" Component_="vector.h" FileName="README" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\README" SelfReg="false" Sequence="790"/>
+ <ROW File="Query.rb" Component_="UserAccountMapper.rb" FileName="Query.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Query.rb" SelfReg="false" Sequence="1153"/>
+ <ROW File="README" Component_="vector.h" FileName="README" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\README" SelfReg="false" Sequence="778"/>
<ROW File="README.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="README.txt" Attributes="0" SourcePath="&lt;WindowsVolume&gt;Builds\ice\distribution\src\windows\docs\main\README.txt" SelfReg="false" Sequence="1"/>
- <ROW File="README_1" Component_="unconfigure" FileName="README" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\README" SelfReg="false" Sequence="1037"/>
- <ROW File="RELEASE_NOTES.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="RELEAS~1.txt|RELEASE_NOTES.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\RELEASE_NOTES.txt" SelfReg="false" Sequence="1070"/>
+ <ROW File="README_1" Component_="unconfigure" FileName="README" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\README" SelfReg="false" Sequence="1025"/>
+ <ROW File="RELEASE_NOTES.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="RELEAS~1.txt|RELEASE_NOTES.txt" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\RELEASE_NOTES.txt" SelfReg="false" Sequence="1058"/>
<ROW File="RWRecMutex.h" Component_="AbstractMutex.h" FileName="RWRecM~1.h|RWRecMutex.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\RWRecMutex.h" SelfReg="false" Sequence="284"/>
<ROW File="Random.h" Component_="AbstractMutex.h" FileName="Random.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Random.h" SelfReg="false" Sequence="282"/>
<ROW File="RecMutex.h" Component_="AbstractMutex.h" FileName="RecMutex.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\RecMutex.h" SelfReg="false" Sequence="283"/>
<ROW File="ReferenceF.h" Component_="Application.h_1" FileName="Refere~1.h|ReferenceF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ReferenceF.h" SelfReg="false" Sequence="220"/>
<ROW File="Registry.h" Component_="Admin.h" FileName="Registry.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Registry.h" SelfReg="false" Sequence="247"/>
<ROW File="Registry.ice" Component_="UserAccountMapper.ice" FileName="Registry.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Registry.ice" SelfReg="false" Sequence="115"/>
- <ROW File="Registry.rb" Component_="UserAccountMapper.rb" FileName="Registry.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Registry.rb" SelfReg="false" Sequence="1166"/>
+ <ROW File="Registry.rb" Component_="UserAccountMapper.rb" FileName="Registry.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Registry.rb" SelfReg="false" Sequence="1154"/>
<ROW File="RequestHandlerF.h" Component_="Application.h_1" FileName="Reques~1.h|RequestHandlerF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\RequestHandlerF.h" SelfReg="false" Sequence="221"/>
<ROW File="Router.h" Component_="Application.h" FileName="Router.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Glacier2\Router.h" SelfReg="false" Sequence="144"/>
<ROW File="Router.h_1" Component_="Application.h_1" FileName="Router.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Router.h" SelfReg="false" Sequence="222"/>
<ROW File="Router.ice" Component_="SSLInfo.ice" FileName="Router.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Glacier2\Router.ice" SelfReg="false" Sequence="68"/>
<ROW File="Router.ice_1" Component_="StatsF.ice" FileName="Router.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Router.ice" SelfReg="false" Sequence="100"/>
- <ROW File="Router.rb" Component_="SSLInfo.rb" FileName="Router.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\Router.rb" SelfReg="false" Sequence="1122"/>
- <ROW File="Router.rb_1" Component_="StatsF.rb" FileName="Router.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Router.rb" SelfReg="false" Sequence="1153"/>
+ <ROW File="Router.rb" Component_="SSLInfo.rb" FileName="Router.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\Router.rb" SelfReg="false" Sequence="1110"/>
+ <ROW File="Router.rb_1" Component_="StatsF.rb" FileName="Router.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Router.rb" SelfReg="false" Sequence="1141"/>
<ROW File="RouterF.h" Component_="Application.h" FileName="RouterF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Glacier2\RouterF.h" SelfReg="false" Sequence="145"/>
<ROW File="RouterF.h_1" Component_="Application.h_1" FileName="RouterF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\RouterF.h" SelfReg="false" Sequence="223"/>
<ROW File="RouterF.ice" Component_="SSLInfo.ice" FileName="RouterF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Glacier2\RouterF.ice" SelfReg="false" Sequence="69"/>
<ROW File="RouterF.ice_1" Component_="StatsF.ice" FileName="RouterF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\RouterF.ice" SelfReg="false" Sequence="101"/>
- <ROW File="RouterF.rb" Component_="SSLInfo.rb" FileName="RouterF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\RouterF.rb" SelfReg="false" Sequence="1123"/>
- <ROW File="RouterF.rb_1" Component_="StatsF.rb" FileName="RouterF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\RouterF.rb" SelfReg="false" Sequence="1154"/>
+ <ROW File="RouterF.rb" Component_="SSLInfo.rb" FileName="RouterF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\RouterF.rb" SelfReg="false" Sequence="1111"/>
+ <ROW File="RouterF.rb_1" Component_="StatsF.rb" FileName="RouterF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\RouterF.rb" SelfReg="false" Sequence="1142"/>
<ROW File="RubyUtil.h" Component_="Checksum.h" FileName="RubyUtil.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Slice\RubyUtil.h" SelfReg="false" Sequence="306"/>
<ROW File="SOURCES.txt" Component_="THIRD_PARTY_SOURCES.txt" FileName="SOURCES.txt" Attributes="0" SourcePath="&lt;WindowsVolume&gt;Builds\ice\distribution\src\windows\docs\main\SOURCES.txt" SelfReg="false" Sequence="2"/>
<ROW File="SSLInfo.h" Component_="Application.h" FileName="SSLInfo.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Glacier2\SSLInfo.h" SelfReg="false" Sequence="147"/>
<ROW File="SSLInfo.ice" Component_="SSLInfo.ice" FileName="SSLInfo.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Glacier2\SSLInfo.ice" SelfReg="false" Sequence="65"/>
- <ROW File="SSLInfo.rb" Component_="SSLInfo.rb" FileName="SSLInfo.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\SSLInfo.rb" SelfReg="false" Sequence="1119"/>
+ <ROW File="SSLInfo.rb" Component_="SSLInfo.rb" FileName="SSLInfo.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\SSLInfo.rb" SelfReg="false" Sequence="1107"/>
<ROW File="ScopedArray.h" Component_="AbstractMutex.h" FileName="Scoped~1.h|ScopedArray.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\ScopedArray.h" SelfReg="false" Sequence="285"/>
<ROW File="ServantLocator.h" Component_="Application.h_1" FileName="Servan~1.h|ServantLocator.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\ServantLocator.h" SelfReg="false" Sequence="224"/>
<ROW File="ServantLocator.ice" Component_="StatsF.ice" FileName="Servan~1.ice|ServantLocator.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\ServantLocator.ice" SelfReg="false" Sequence="102"/>
@@ -749,21 +749,21 @@
<ROW File="Session.h_1" Component_="Admin.h" FileName="Session.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\Session.h" SelfReg="false" Sequence="248"/>
<ROW File="Session.ice" Component_="SSLInfo.ice" FileName="Session.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Glacier2\Session.ice" SelfReg="false" Sequence="70"/>
<ROW File="Session.ice_1" Component_="UserAccountMapper.ice" FileName="Session.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\Session.ice" SelfReg="false" Sequence="116"/>
- <ROW File="Session.rb" Component_="SSLInfo.rb" FileName="Session.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\Session.rb" SelfReg="false" Sequence="1124"/>
- <ROW File="Session.rb_1" Component_="UserAccountMapper.rb" FileName="Session.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Session.rb" SelfReg="false" Sequence="1167"/>
+ <ROW File="Session.rb" Component_="SSLInfo.rb" FileName="Session.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Glacier2\Session.rb" SelfReg="false" Sequence="1112"/>
+ <ROW File="Session.rb_1" Component_="UserAccountMapper.rb" FileName="Session.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\Session.rb" SelfReg="false" Sequence="1155"/>
<ROW File="Shared.h" Component_="AbstractMutex.h" FileName="Shared.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Shared.h" SelfReg="false" Sequence="286"/>
- <ROW File="Slice.zip" Component_="Slice.zip" FileName="Slice.zip" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\Slice.zip" SelfReg="false" Sequence="1095"/>
+ <ROW File="Slice.zip" Component_="Slice.zip" FileName="Slice.zip" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\Slice.zip" SelfReg="false" Sequence="1083"/>
<ROW File="SliceChecksumDict.h" Component_="Application.h_1" FileName="SliceC~1.h|SliceChecksumDict.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\SliceChecksumDict.h" SelfReg="false" Sequence="228"/>
<ROW File="SliceChecksumDict.ice" Component_="StatsF.ice" FileName="SliceC~1.ice|SliceChecksumDict.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\SliceChecksumDict.ice" SelfReg="false" Sequence="104"/>
- <ROW File="SliceChecksumDict.rb" Component_="StatsF.rb" FileName="SliceC~1.rb|SliceChecksumDict.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\SliceChecksumDict.rb" SelfReg="false" Sequence="1155"/>
+ <ROW File="SliceChecksumDict.rb" Component_="StatsF.rb" FileName="SliceC~1.rb|SliceChecksumDict.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\SliceChecksumDict.rb" SelfReg="false" Sequence="1143"/>
<ROW File="SliceChecksums.h" Component_="Application.h_1" FileName="SliceC~2.h|SliceChecksums.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\SliceChecksums.h" SelfReg="false" Sequence="229"/>
<ROW File="StaticMutex.h" Component_="AbstractMutex.h" FileName="Static~1.h|StaticMutex.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\StaticMutex.h" SelfReg="false" Sequence="287"/>
<ROW File="Stats.h" Component_="Application.h_1" FileName="Stats.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Stats.h" SelfReg="false" Sequence="230"/>
<ROW File="Stats.ice" Component_="StatsF.ice" FileName="Stats.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\Stats.ice" SelfReg="false" Sequence="105"/>
- <ROW File="Stats.rb" Component_="StatsF.rb" FileName="Stats.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Stats.rb" SelfReg="false" Sequence="1156"/>
+ <ROW File="Stats.rb" Component_="StatsF.rb" FileName="Stats.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\Stats.rb" SelfReg="false" Sequence="1144"/>
<ROW File="StatsF.h" Component_="Application.h_1" FileName="StatsF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\StatsF.h" SelfReg="false" Sequence="231"/>
<ROW File="StatsF.ice" Component_="StatsF.ice" FileName="StatsF.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\Ice\StatsF.ice" SelfReg="false" Sequence="71"/>
- <ROW File="StatsF.rb" Component_="StatsF.rb" FileName="StatsF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\StatsF.rb" SelfReg="false" Sequence="1125"/>
+ <ROW File="StatsF.rb" Component_="StatsF.rb" FileName="StatsF.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\Ice\StatsF.rb" SelfReg="false" Sequence="1113"/>
<ROW File="Stream.h" Component_="Application.h_1" FileName="Stream.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\Stream.h" SelfReg="false" Sequence="232"/>
<ROW File="StreamF.h" Component_="Application.h_1" FileName="StreamF.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\StreamF.h" SelfReg="false" Sequence="233"/>
<ROW File="StringConverter.h" Component_="Application.h_1" FileName="String~1.h|StringConverter.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\StringConverter.h" SelfReg="false" Sequence="234"/>
@@ -783,97 +783,97 @@
<ROW File="Unicode.h" Component_="AbstractMutex.h" FileName="Unicode.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceUtil\Unicode.h" SelfReg="false" Sequence="293"/>
<ROW File="UserAccountMapper.h" Component_="Admin.h" FileName="UserAc~1.h|UserAccountMapper.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IceGrid\UserAccountMapper.h" SelfReg="false" Sequence="249"/>
<ROW File="UserAccountMapper.ice" Component_="UserAccountMapper.ice" FileName="UserAc~1.ice|UserAccountMapper.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\slice\IceGrid\UserAccountMapper.ice" SelfReg="false" Sequence="107"/>
- <ROW File="UserAccountMapper.rb" Component_="UserAccountMapper.rb" FileName="UserAc~1.rb|UserAccountMapper.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\UserAccountMapper.rb" SelfReg="false" Sequence="1158"/>
+ <ROW File="UserAccountMapper.rb" Component_="UserAccountMapper.rb" FileName="UserAc~1.rb|UserAccountMapper.rb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\rb\ruby\IceGrid\UserAccountMapper.rb" SelfReg="false" Sequence="1146"/>
<ROW File="UserExceptionFactory.h" Component_="Application.h_1" FileName="UserEx~1.h|UserExceptionFactory.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Ice\UserExceptionFactory.h" SelfReg="false" Sequence="236"/>
<ROW File="Util.h" Component_="ClientUtil.h" FileName="Util.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\IcePatch2\Util.h" SelfReg="false" Sequence="253"/>
<ROW File="Util.h_1" Component_="Checksum.h" FileName="Util.h" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\include\Slice\Util.h" SelfReg="false" Sequence="307"/>
- <ROW File="abbrevs.h" Component_="type_traits.h" FileName="_abbrevs.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_abbrevs.h" SelfReg="false" Sequence="868"/>
- <ROW File="algo.c" Component_="type_traits.h" FileName="_algo.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algo.c" SelfReg="false" Sequence="869"/>
- <ROW File="algo.h" Component_="vector.h_1" FileName="algo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\algo.h" SelfReg="false" Sequence="840"/>
- <ROW File="algo.h_1" Component_="type_traits.h" FileName="_algo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algo.h" SelfReg="false" Sequence="870"/>
- <ROW File="algobase.c" Component_="type_traits.h" FileName="_algob~1.c|_algobase.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algobase.c" SelfReg="false" Sequence="871"/>
- <ROW File="algobase.h" Component_="vector.h_1" FileName="algobase.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\algobase.h" SelfReg="false" Sequence="841"/>
- <ROW File="algobase.h_1" Component_="type_traits.h" FileName="_algob~1.h|_algobase.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algobase.h" SelfReg="false" Sequence="872"/>
- <ROW File="algorith.h" Component_="vector.h" FileName="algorith.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\algorith.h" SelfReg="false" Sequence="747"/>
- <ROW File="algorithm" Component_="wctype.h" FileName="algori~1|algorithm" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\algorithm" SelfReg="false" Sequence="659"/>
- <ROW File="alloc.c" Component_="type_traits.h" FileName="_alloc.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_alloc.c" SelfReg="false" Sequence="873"/>
- <ROW File="alloc.h" Component_="vector.h" FileName="alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\alloc.h" SelfReg="false" Sequence="748"/>
- <ROW File="alloc.h_1" Component_="vector.h_1" FileName="alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\alloc.h" SelfReg="false" Sequence="842"/>
- <ROW File="alloc.h_2" Component_="type_traits.h" FileName="_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_alloc.h" SelfReg="false" Sequence="874"/>
- <ROW File="alloc_old.h" Component_="type_traits.h" FileName="_alloc~1.h|_alloc_old.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_alloc_old.h" SelfReg="false" Sequence="875"/>
- <ROW File="ant_ice.jar" Component_="Ice.jar" FileName="ant-ice.jar" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\lib\ant-ice.jar" SelfReg="false" Sequence="522"/>
- <ROW File="auto_ptr.h" Component_="type_traits.h" FileName="_auto_~1.h|_auto_ptr.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_auto_ptr.h" SelfReg="false" Sequence="876"/>
- <ROW File="bitset" Component_="wctype.h" FileName="bitset" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\bitset" SelfReg="false" Sequence="660"/>
- <ROW File="bitset.c" Component_="type_traits.h" FileName="_bitset.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_bitset.c" SelfReg="false" Sequence="877"/>
- <ROW File="bitset.h" Component_="vector.h" FileName="bitset.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\bitset.h" SelfReg="false" Sequence="749"/>
- <ROW File="bitset.h_1" Component_="type_traits.h" FileName="_bitset.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_bitset.h" SelfReg="false" Sequence="878"/>
- <ROW File="bvector.h" Component_="vector.h_1" FileName="bvector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\bvector.h" SelfReg="false" Sequence="843"/>
- <ROW File="bvector.h_1" Component_="type_traits.h" FileName="_bvector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_bvector.h" SelfReg="false" Sequence="879"/>
+ <ROW File="abbrevs.h" Component_="type_traits.h" FileName="_abbrevs.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_abbrevs.h" SelfReg="false" Sequence="856"/>
+ <ROW File="algo.c" Component_="type_traits.h" FileName="_algo.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algo.c" SelfReg="false" Sequence="857"/>
+ <ROW File="algo.h" Component_="vector.h_1" FileName="algo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\algo.h" SelfReg="false" Sequence="828"/>
+ <ROW File="algo.h_1" Component_="type_traits.h" FileName="_algo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algo.h" SelfReg="false" Sequence="858"/>
+ <ROW File="algobase.c" Component_="type_traits.h" FileName="_algob~1.c|_algobase.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algobase.c" SelfReg="false" Sequence="859"/>
+ <ROW File="algobase.h" Component_="vector.h_1" FileName="algobase.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\algobase.h" SelfReg="false" Sequence="829"/>
+ <ROW File="algobase.h_1" Component_="type_traits.h" FileName="_algob~1.h|_algobase.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_algobase.h" SelfReg="false" Sequence="860"/>
+ <ROW File="algorith.h" Component_="vector.h" FileName="algorith.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\algorith.h" SelfReg="false" Sequence="735"/>
+ <ROW File="algorithm" Component_="wctype.h" FileName="algori~1|algorithm" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\algorithm" SelfReg="false" Sequence="647"/>
+ <ROW File="alloc.c" Component_="type_traits.h" FileName="_alloc.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_alloc.c" SelfReg="false" Sequence="861"/>
+ <ROW File="alloc.h" Component_="vector.h" FileName="alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\alloc.h" SelfReg="false" Sequence="736"/>
+ <ROW File="alloc.h_1" Component_="vector.h_1" FileName="alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\alloc.h" SelfReg="false" Sequence="830"/>
+ <ROW File="alloc.h_2" Component_="type_traits.h" FileName="_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_alloc.h" SelfReg="false" Sequence="862"/>
+ <ROW File="alloc_old.h" Component_="type_traits.h" FileName="_alloc~1.h|_alloc_old.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_alloc_old.h" SelfReg="false" Sequence="863"/>
+ <ROW File="ant_ice.jar" Component_="Ice.jar" FileName="ant-ice.jar" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\java\lib\ant-ice.jar" SelfReg="false" Sequence="510"/>
+ <ROW File="auto_ptr.h" Component_="type_traits.h" FileName="_auto_~1.h|_auto_ptr.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_auto_ptr.h" SelfReg="false" Sequence="864"/>
+ <ROW File="bitset" Component_="wctype.h" FileName="bitset" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\bitset" SelfReg="false" Sequence="648"/>
+ <ROW File="bitset.c" Component_="type_traits.h" FileName="_bitset.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_bitset.c" SelfReg="false" Sequence="865"/>
+ <ROW File="bitset.h" Component_="vector.h" FileName="bitset.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\bitset.h" SelfReg="false" Sequence="737"/>
+ <ROW File="bitset.h_1" Component_="type_traits.h" FileName="_bitset.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_bitset.h" SelfReg="false" Sequence="866"/>
+ <ROW File="bvector.h" Component_="vector.h_1" FileName="bvector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\bvector.h" SelfReg="false" Sequence="831"/>
+ <ROW File="bvector.h_1" Component_="type_traits.h" FileName="_bvector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_bvector.h" SelfReg="false" Sequence="867"/>
<ROW File="bzip2.dll" Component_="bzip2.dll" FileName="bzip2.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\bzip2.dll" SelfReg="false" Sequence="5" DigSign="true"/>
<ROW File="bzip2.dll_1" Component_="bzip2.dll_1" FileName="bzip2.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\bzip2.dll" SelfReg="false" Sequence="35" DigSign="true"/>
<ROW File="bzip2_vc6.dll" Component_="bzip2_vc6.dll" FileName="bzip2_~1.dll|bzip2_vc6.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\bzip2_vc6.dll" SelfReg="false" Sequence="6" DigSign="true"/>
<ROW File="bzip2_vc6d.dll" Component_="bzip2_vc6d.dll" FileName="bzip2_~2.dll|bzip2_vc6d.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\bzip2_vc6d.dll" SelfReg="false" Sequence="7" DigSign="true"/>
<ROW File="bzip2d.dll" Component_="bzip2d.dll" FileName="bzip2d.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\bzip2d.dll" SelfReg="false" Sequence="8" DigSign="true"/>
<ROW File="bzip2d.dll_1" Component_="bzip2d.dll_1" FileName="bzip2d.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\bzip2d.dll" SelfReg="false" Sequence="36" DigSign="true"/>
- <ROW File="c_locale.h" Component_="type_traits.h" FileName="c_locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\c_locale.h" SelfReg="false" Sequence="990"/>
- <ROW File="cassert" Component_="wctype.h" FileName="cassert" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cassert" SelfReg="false" Sequence="661"/>
- <ROW File="cassert.h" Component_="vector.h" FileName="cassert.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cassert.h" SelfReg="false" Sequence="750"/>
- <ROW File="cctype" Component_="wctype.h" FileName="cctype" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cctype" SelfReg="false" Sequence="662"/>
- <ROW File="cctype.h" Component_="vector.h" FileName="cctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cctype.h" SelfReg="false" Sequence="751"/>
- <ROW File="cerrno" Component_="wctype.h" FileName="cerrno" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cerrno" SelfReg="false" Sequence="663"/>
- <ROW File="cerrno.h" Component_="vector.h" FileName="cerrno.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cerrno.h" SelfReg="false" Sequence="752"/>
- <ROW File="cfloat" Component_="wctype.h" FileName="cfloat" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cfloat" SelfReg="false" Sequence="664"/>
- <ROW File="cfloat.h" Component_="vector.h" FileName="cfloat.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cfloat.h" SelfReg="false" Sequence="753"/>
- <ROW File="char_traits.h" Component_="type_traits.h" FileName="char_t~1.h|char_traits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\char_traits.h" SelfReg="false" Sequence="991"/>
- <ROW File="check_config.h" Component_="type_traits.h" FileName="_check~1.h|_check_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_check_config.h" SelfReg="false" Sequence="880"/>
- <ROW File="climits" Component_="wctype.h" FileName="climits" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\climits" SelfReg="false" Sequence="665"/>
- <ROW File="climits.h" Component_="vector.h" FileName="climits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\climits.h" SelfReg="false" Sequence="754"/>
- <ROW File="clocale" Component_="wctype.h" FileName="clocale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\clocale" SelfReg="false" Sequence="666"/>
- <ROW File="clocale.h" Component_="vector.h" FileName="clocale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\clocale.h" SelfReg="false" Sequence="755"/>
- <ROW File="cmath" Component_="wctype.h" FileName="cmath" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cmath" SelfReg="false" Sequence="667"/>
- <ROW File="cmath.h" Component_="vector.h" FileName="cmath.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cmath.h" SelfReg="false" Sequence="756"/>
- <ROW File="cmath.h_1" Component_="type_traits.h" FileName="_cmath.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_cmath.h" SelfReg="false" Sequence="881"/>
- <ROW File="codecvt.h" Component_="type_traits.h" FileName="_codecvt.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_codecvt.h" SelfReg="false" Sequence="882"/>
- <ROW File="collate.h" Component_="type_traits.h" FileName="_collate.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_collate.h" SelfReg="false" Sequence="883"/>
- <ROW File="complex" Component_="wctype.h" FileName="complex" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\complex" SelfReg="false" Sequence="668"/>
- <ROW File="complex.c" Component_="type_traits.h" FileName="_complex.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_complex.c" SelfReg="false" Sequence="884"/>
- <ROW File="complex.h" Component_="vector.h" FileName="complex.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\complex.h" SelfReg="false" Sequence="757"/>
- <ROW File="complex.h_1" Component_="type_traits.h" FileName="_complex.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_complex.h" SelfReg="false" Sequence="885"/>
- <ROW File="complex_1" Component_="strstream_1" FileName="complex" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\complex" SelfReg="false" Sequence="1008"/>
- <ROW File="concept_checks.h" Component_="type_traits.h" FileName="concep~1.h|concept_checks.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\concept_checks.h" SelfReg="false" Sequence="992"/>
- <ROW File="config.h_2" Component_="type_traits.h" FileName="_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_config.h" SelfReg="false" Sequence="886"/>
- <ROW File="config_compat.h" Component_="type_traits.h" FileName="_confi~1.h|_config_compat.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_config_compat.h" SelfReg="false" Sequence="887"/>
- <ROW File="config_compat_post.h" Component_="type_traits.h" FileName="_confi~2.h|_config_compat_post.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_config_compat_post.h" SelfReg="false" Sequence="888"/>
- <ROW File="configure" Component_="unconfigure" FileName="config~1|configure" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\configure" SelfReg="false" Sequence="1035"/>
- <ROW File="configure.in" Component_="unconfigure" FileName="config~1.in|configure.in" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\configure.in" SelfReg="false" Sequence="1036"/>
- <ROW File="construct.h" Component_="type_traits.h" FileName="_const~1.h|_construct.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_construct.h" SelfReg="false" Sequence="889"/>
- <ROW File="convertssl.py" Component_="upgradeicegrid.py" FileName="conver~1.py|convertssl.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\config\convertssl.py" SelfReg="false" Sequence="1171"/>
- <ROW File="csetjmp" Component_="wctype.h" FileName="csetjmp" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\csetjmp" SelfReg="false" Sequence="669"/>
- <ROW File="csetjmp.h" Component_="vector.h" FileName="csetjmp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\csetjmp.h" SelfReg="false" Sequence="758"/>
- <ROW File="csignal" Component_="wctype.h" FileName="csignal" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\csignal" SelfReg="false" Sequence="670"/>
- <ROW File="csignal.h" Component_="vector.h" FileName="csignal.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\csignal.h" SelfReg="false" Sequence="759"/>
- <ROW File="cstdarg" Component_="wctype.h" FileName="cstdarg" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstdarg" SelfReg="false" Sequence="671"/>
- <ROW File="cstdarg.h" Component_="vector.h" FileName="cstdarg.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstdarg.h" SelfReg="false" Sequence="760"/>
- <ROW File="cstddef" Component_="wctype.h" FileName="cstddef" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstddef" SelfReg="false" Sequence="672"/>
- <ROW File="cstddef.h" Component_="vector.h" FileName="cstddef.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstddef.h" SelfReg="false" Sequence="761"/>
- <ROW File="cstdio" Component_="wctype.h" FileName="cstdio" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstdio" SelfReg="false" Sequence="673"/>
- <ROW File="cstdio.h" Component_="vector.h" FileName="cstdio.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstdio.h" SelfReg="false" Sequence="762"/>
- <ROW File="cstdlib" Component_="wctype.h" FileName="cstdlib" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstdlib" SelfReg="false" Sequence="674"/>
- <ROW File="cstdlib.h" Component_="vector.h" FileName="cstdlib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstdlib.h" SelfReg="false" Sequence="763"/>
- <ROW File="cstring" Component_="wctype.h" FileName="cstring" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstring" SelfReg="false" Sequence="675"/>
- <ROW File="cstring.h" Component_="vector.h" FileName="cstring.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstring.h" SelfReg="false" Sequence="764"/>
- <ROW File="cstring.h_1" Component_="strstream.h" FileName="cstring.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\cstring.h" SelfReg="false" Sequence="1023"/>
- <ROW File="cstring_1" Component_="strstream" FileName="cstring" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\cstring" SelfReg="false" Sequence="995"/>
- <ROW File="ctime" Component_="wctype.h" FileName="ctime" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ctime" SelfReg="false" Sequence="676"/>
- <ROW File="ctime.h" Component_="vector.h" FileName="ctime.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\ctime.h" SelfReg="false" Sequence="765"/>
- <ROW File="ctraits_fns.h" Component_="type_traits.h" FileName="_ctrai~1.h|_ctraits_fns.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ctraits_fns.h" SelfReg="false" Sequence="890"/>
- <ROW File="ctype.h" Component_="wctype.h" FileName="ctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ctype.h" SelfReg="false" Sequence="677"/>
- <ROW File="ctype.h_1" Component_="type_traits.h" FileName="_ctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ctype.h" SelfReg="false" Sequence="891"/>
- <ROW File="cwchar" Component_="wctype.h" FileName="cwchar" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cwchar" SelfReg="false" Sequence="678"/>
- <ROW File="cwchar.h" Component_="vector.h" FileName="cwchar.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cwchar.h" SelfReg="false" Sequence="766"/>
- <ROW File="cwchar.h_1" Component_="type_traits.h" FileName="_cwchar.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_cwchar.h" SelfReg="false" Sequence="892"/>
- <ROW File="cwctype" Component_="wctype.h" FileName="cwctype" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cwctype" SelfReg="false" Sequence="679"/>
- <ROW File="cwctype.h" Component_="vector.h" FileName="cwctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cwctype.h" SelfReg="false" Sequence="767"/>
+ <ROW File="c_locale.h" Component_="type_traits.h" FileName="c_locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\c_locale.h" SelfReg="false" Sequence="978"/>
+ <ROW File="cassert" Component_="wctype.h" FileName="cassert" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cassert" SelfReg="false" Sequence="649"/>
+ <ROW File="cassert.h" Component_="vector.h" FileName="cassert.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cassert.h" SelfReg="false" Sequence="738"/>
+ <ROW File="cctype" Component_="wctype.h" FileName="cctype" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cctype" SelfReg="false" Sequence="650"/>
+ <ROW File="cctype.h" Component_="vector.h" FileName="cctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cctype.h" SelfReg="false" Sequence="739"/>
+ <ROW File="cerrno" Component_="wctype.h" FileName="cerrno" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cerrno" SelfReg="false" Sequence="651"/>
+ <ROW File="cerrno.h" Component_="vector.h" FileName="cerrno.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cerrno.h" SelfReg="false" Sequence="740"/>
+ <ROW File="cfloat" Component_="wctype.h" FileName="cfloat" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cfloat" SelfReg="false" Sequence="652"/>
+ <ROW File="cfloat.h" Component_="vector.h" FileName="cfloat.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cfloat.h" SelfReg="false" Sequence="741"/>
+ <ROW File="char_traits.h" Component_="type_traits.h" FileName="char_t~1.h|char_traits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\char_traits.h" SelfReg="false" Sequence="979"/>
+ <ROW File="check_config.h" Component_="type_traits.h" FileName="_check~1.h|_check_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_check_config.h" SelfReg="false" Sequence="868"/>
+ <ROW File="climits" Component_="wctype.h" FileName="climits" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\climits" SelfReg="false" Sequence="653"/>
+ <ROW File="climits.h" Component_="vector.h" FileName="climits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\climits.h" SelfReg="false" Sequence="742"/>
+ <ROW File="clocale" Component_="wctype.h" FileName="clocale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\clocale" SelfReg="false" Sequence="654"/>
+ <ROW File="clocale.h" Component_="vector.h" FileName="clocale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\clocale.h" SelfReg="false" Sequence="743"/>
+ <ROW File="cmath" Component_="wctype.h" FileName="cmath" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cmath" SelfReg="false" Sequence="655"/>
+ <ROW File="cmath.h" Component_="vector.h" FileName="cmath.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cmath.h" SelfReg="false" Sequence="744"/>
+ <ROW File="cmath.h_1" Component_="type_traits.h" FileName="_cmath.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_cmath.h" SelfReg="false" Sequence="869"/>
+ <ROW File="codecvt.h" Component_="type_traits.h" FileName="_codecvt.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_codecvt.h" SelfReg="false" Sequence="870"/>
+ <ROW File="collate.h" Component_="type_traits.h" FileName="_collate.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_collate.h" SelfReg="false" Sequence="871"/>
+ <ROW File="complex" Component_="wctype.h" FileName="complex" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\complex" SelfReg="false" Sequence="656"/>
+ <ROW File="complex.c" Component_="type_traits.h" FileName="_complex.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_complex.c" SelfReg="false" Sequence="872"/>
+ <ROW File="complex.h" Component_="vector.h" FileName="complex.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\complex.h" SelfReg="false" Sequence="745"/>
+ <ROW File="complex.h_1" Component_="type_traits.h" FileName="_complex.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_complex.h" SelfReg="false" Sequence="873"/>
+ <ROW File="complex_1" Component_="strstream_1" FileName="complex" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\complex" SelfReg="false" Sequence="996"/>
+ <ROW File="concept_checks.h" Component_="type_traits.h" FileName="concep~1.h|concept_checks.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\concept_checks.h" SelfReg="false" Sequence="980"/>
+ <ROW File="config.h_2" Component_="type_traits.h" FileName="_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_config.h" SelfReg="false" Sequence="874"/>
+ <ROW File="config_compat.h" Component_="type_traits.h" FileName="_confi~1.h|_config_compat.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_config_compat.h" SelfReg="false" Sequence="875"/>
+ <ROW File="config_compat_post.h" Component_="type_traits.h" FileName="_confi~2.h|_config_compat_post.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_config_compat_post.h" SelfReg="false" Sequence="876"/>
+ <ROW File="configure" Component_="unconfigure" FileName="config~1|configure" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\configure" SelfReg="false" Sequence="1023"/>
+ <ROW File="configure.in" Component_="unconfigure" FileName="config~1.in|configure.in" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\configure.in" SelfReg="false" Sequence="1024"/>
+ <ROW File="construct.h" Component_="type_traits.h" FileName="_const~1.h|_construct.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_construct.h" SelfReg="false" Sequence="877"/>
+ <ROW File="convertssl.py" Component_="upgradeicegrid.py" FileName="conver~1.py|convertssl.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\config\convertssl.py" SelfReg="false" Sequence="1159"/>
+ <ROW File="csetjmp" Component_="wctype.h" FileName="csetjmp" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\csetjmp" SelfReg="false" Sequence="657"/>
+ <ROW File="csetjmp.h" Component_="vector.h" FileName="csetjmp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\csetjmp.h" SelfReg="false" Sequence="746"/>
+ <ROW File="csignal" Component_="wctype.h" FileName="csignal" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\csignal" SelfReg="false" Sequence="658"/>
+ <ROW File="csignal.h" Component_="vector.h" FileName="csignal.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\csignal.h" SelfReg="false" Sequence="747"/>
+ <ROW File="cstdarg" Component_="wctype.h" FileName="cstdarg" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstdarg" SelfReg="false" Sequence="659"/>
+ <ROW File="cstdarg.h" Component_="vector.h" FileName="cstdarg.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstdarg.h" SelfReg="false" Sequence="748"/>
+ <ROW File="cstddef" Component_="wctype.h" FileName="cstddef" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstddef" SelfReg="false" Sequence="660"/>
+ <ROW File="cstddef.h" Component_="vector.h" FileName="cstddef.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstddef.h" SelfReg="false" Sequence="749"/>
+ <ROW File="cstdio" Component_="wctype.h" FileName="cstdio" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstdio" SelfReg="false" Sequence="661"/>
+ <ROW File="cstdio.h" Component_="vector.h" FileName="cstdio.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstdio.h" SelfReg="false" Sequence="750"/>
+ <ROW File="cstdlib" Component_="wctype.h" FileName="cstdlib" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstdlib" SelfReg="false" Sequence="662"/>
+ <ROW File="cstdlib.h" Component_="vector.h" FileName="cstdlib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstdlib.h" SelfReg="false" Sequence="751"/>
+ <ROW File="cstring" Component_="wctype.h" FileName="cstring" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cstring" SelfReg="false" Sequence="663"/>
+ <ROW File="cstring.h" Component_="vector.h" FileName="cstring.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cstring.h" SelfReg="false" Sequence="752"/>
+ <ROW File="cstring.h_1" Component_="strstream.h" FileName="cstring.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\cstring.h" SelfReg="false" Sequence="1011"/>
+ <ROW File="cstring_1" Component_="strstream" FileName="cstring" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\cstring" SelfReg="false" Sequence="983"/>
+ <ROW File="ctime" Component_="wctype.h" FileName="ctime" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ctime" SelfReg="false" Sequence="664"/>
+ <ROW File="ctime.h" Component_="vector.h" FileName="ctime.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\ctime.h" SelfReg="false" Sequence="753"/>
+ <ROW File="ctraits_fns.h" Component_="type_traits.h" FileName="_ctrai~1.h|_ctraits_fns.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ctraits_fns.h" SelfReg="false" Sequence="878"/>
+ <ROW File="ctype.h" Component_="wctype.h" FileName="ctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ctype.h" SelfReg="false" Sequence="665"/>
+ <ROW File="ctype.h_1" Component_="type_traits.h" FileName="_ctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ctype.h" SelfReg="false" Sequence="879"/>
+ <ROW File="cwchar" Component_="wctype.h" FileName="cwchar" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cwchar" SelfReg="false" Sequence="666"/>
+ <ROW File="cwchar.h" Component_="vector.h" FileName="cwchar.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cwchar.h" SelfReg="false" Sequence="754"/>
+ <ROW File="cwchar.h_1" Component_="type_traits.h" FileName="_cwchar.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_cwchar.h" SelfReg="false" Sequence="880"/>
+ <ROW File="cwctype" Component_="wctype.h" FileName="cwctype" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\cwctype" SelfReg="false" Sequence="667"/>
+ <ROW File="cwctype.h" Component_="vector.h" FileName="cwctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\cwctype.h" SelfReg="false" Sequence="755"/>
<ROW File="db_archive.exe" Component_="db_archive.exe" FileName="db_arc~1.exe|db_archive.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\db_archive.exe" SelfReg="false" Sequence="9" DigSign="true"/>
<ROW File="db_archive.exe_1" Component_="db_archive.exe_1" FileName="db_arc~1.exe|db_archive.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\db_archive.exe" SelfReg="false" Sequence="37" DigSign="true"/>
<ROW File="db_checkpoint.exe" Component_="db_checkpoint.exe" FileName="db_che~1.exe|db_checkpoint.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\db_checkpoint.exe" SelfReg="false" Sequence="10" DigSign="true"/>
@@ -896,32 +896,32 @@
<ROW File="db_upgrade.exe_1" Component_="db_upgrade.exe_1" FileName="db_upg~1.exe|db_upgrade.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\db_upgrade.exe" SelfReg="false" Sequence="46" DigSign="true"/>
<ROW File="db_verify.exe" Component_="db_verify.exe" FileName="db_ver~1.exe|db_verify.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\db_verify.exe" SelfReg="false" Sequence="19" DigSign="true"/>
<ROW File="db_verify.exe_1" Component_="db_verify.exe_1" FileName="db_ver~1.exe|db_verify.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\db_verify.exe" SelfReg="false" Sequence="47" DigSign="true"/>
- <ROW File="debug.c" Component_="vector.h_2" FileName="_debug.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_debug.c" SelfReg="false" Sequence="1040"/>
- <ROW File="debug.h" Component_="vector.h_2" FileName="_debug.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_debug.h" SelfReg="false" Sequence="1041"/>
- <ROW File="defalloc.h" Component_="vector.h_1" FileName="defalloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\defalloc.h" SelfReg="false" Sequence="844"/>
- <ROW File="deque" Component_="wctype.h" FileName="deque" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\deque" SelfReg="false" Sequence="680"/>
- <ROW File="deque.c" Component_="type_traits.h" FileName="_deque.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_deque.c" SelfReg="false" Sequence="893"/>
- <ROW File="deque.h" Component_="vector.h" FileName="deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\deque.h" SelfReg="false" Sequence="768"/>
- <ROW File="deque.h_1" Component_="vector.h_1" FileName="deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\deque.h" SelfReg="false" Sequence="845"/>
- <ROW File="deque.h_2" Component_="type_traits.h" FileName="_deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_deque.h" SelfReg="false" Sequence="894"/>
- <ROW File="deque.h_3" Component_="vector.h_2" FileName="_deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_deque.h" SelfReg="false" Sequence="1042"/>
- <ROW File="deque.h_4" Component_="vector.h_3" FileName="_deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_deque.h" SelfReg="false" Sequence="1052"/>
+ <ROW File="debug.c" Component_="vector.h_2" FileName="_debug.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_debug.c" SelfReg="false" Sequence="1028"/>
+ <ROW File="debug.h" Component_="vector.h_2" FileName="_debug.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_debug.h" SelfReg="false" Sequence="1029"/>
+ <ROW File="defalloc.h" Component_="vector.h_1" FileName="defalloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\defalloc.h" SelfReg="false" Sequence="832"/>
+ <ROW File="deque" Component_="wctype.h" FileName="deque" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\deque" SelfReg="false" Sequence="668"/>
+ <ROW File="deque.c" Component_="type_traits.h" FileName="_deque.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_deque.c" SelfReg="false" Sequence="881"/>
+ <ROW File="deque.h" Component_="vector.h" FileName="deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\deque.h" SelfReg="false" Sequence="756"/>
+ <ROW File="deque.h_1" Component_="vector.h_1" FileName="deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\deque.h" SelfReg="false" Sequence="833"/>
+ <ROW File="deque.h_2" Component_="type_traits.h" FileName="_deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_deque.h" SelfReg="false" Sequence="882"/>
+ <ROW File="deque.h_3" Component_="vector.h_2" FileName="_deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_deque.h" SelfReg="false" Sequence="1030"/>
+ <ROW File="deque.h_4" Component_="vector.h_3" FileName="_deque.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_deque.h" SelfReg="false" Sequence="1040"/>
<ROW File="dumpdb.exe" Component_="dumpdb.exe" FileName="dumpdb.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\dumpdb.exe" SelfReg="false" Sequence="333" DigSign="true"/>
<ROW File="dumpdb.exe_1" Component_="dumpdb.exe_1" FileName="dumpdb.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\dumpdb.exe" SelfReg="false" Sequence="440" DigSign="true"/>
- <ROW File="epilog.h" Component_="vc_select_lib.h" FileName="_epilog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\_epilog.h" SelfReg="false" Sequence="806"/>
- <ROW File="epilog.h_1" Component_="type_traits.h" FileName="_epilog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_epilog.h" SelfReg="false" Sequence="895"/>
- <ROW File="exceptio.h" Component_="vector.h" FileName="exceptio.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\exceptio.h" SelfReg="false" Sequence="769"/>
- <ROW File="exception" Component_="wctype.h" FileName="except~1|exception" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\exception" SelfReg="false" Sequence="681"/>
- <ROW File="exception.h_4" Component_="wctype.h" FileName="except~1.h|exception.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\exception.h" SelfReg="false" Sequence="682"/>
- <ROW File="exception.h_5" Component_="type_traits.h" FileName="_excep~1.h|_exception.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_exception.h" SelfReg="false" Sequence="896"/>
- <ROW File="export" Component_="wctype.h" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\export" SelfReg="false" Sequence="683"/>
- <ROW File="export.sun" Component_="wctype.h" FileName="export.sun" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\export.sun" SelfReg="false" Sequence="684"/>
- <ROW File="export_1" Component_="vector.h_1" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\export" SelfReg="false" Sequence="846"/>
- <ROW File="export_2" Component_="strstream" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\export" SelfReg="false" Sequence="996"/>
- <ROW File="export_3" Component_="strstream_1" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\export" SelfReg="false" Sequence="1009"/>
- <ROW File="freeze.lib" Component_="Ice.jar" FileName="freeze.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\freeze.lib" SelfReg="false" Sequence="526"/>
- <ROW File="freeze.lib_1" Component_="freezed.lib" FileName="freeze.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\freeze.lib" SelfReg="false" Sequence="564"/>
- <ROW File="freeze.lib_2" Component_="freezed.lib_1" FileName="freeze.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\freeze.lib" SelfReg="false" Sequence="586"/>
+ <ROW File="epilog.h" Component_="vc_select_lib.h" FileName="_epilog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\_epilog.h" SelfReg="false" Sequence="794"/>
+ <ROW File="epilog.h_1" Component_="type_traits.h" FileName="_epilog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_epilog.h" SelfReg="false" Sequence="883"/>
+ <ROW File="exceptio.h" Component_="vector.h" FileName="exceptio.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\exceptio.h" SelfReg="false" Sequence="757"/>
+ <ROW File="exception" Component_="wctype.h" FileName="except~1|exception" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\exception" SelfReg="false" Sequence="669"/>
+ <ROW File="exception.h_4" Component_="wctype.h" FileName="except~1.h|exception.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\exception.h" SelfReg="false" Sequence="670"/>
+ <ROW File="exception.h_5" Component_="type_traits.h" FileName="_excep~1.h|_exception.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_exception.h" SelfReg="false" Sequence="884"/>
+ <ROW File="export" Component_="wctype.h" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\export" SelfReg="false" Sequence="671"/>
+ <ROW File="export.sun" Component_="wctype.h" FileName="export.sun" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\export.sun" SelfReg="false" Sequence="672"/>
+ <ROW File="export_1" Component_="vector.h_1" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\export" SelfReg="false" Sequence="834"/>
+ <ROW File="export_2" Component_="strstream" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\export" SelfReg="false" Sequence="984"/>
+ <ROW File="export_3" Component_="strstream_1" FileName="export" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\export" SelfReg="false" Sequence="997"/>
+ <ROW File="freeze.lib" Component_="Ice.jar" FileName="freeze.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\freeze.lib" SelfReg="false" Sequence="514"/>
+ <ROW File="freeze.lib_1" Component_="freezed.lib" FileName="freeze.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\freeze.lib" SelfReg="false" Sequence="552"/>
+ <ROW File="freeze.lib_2" Component_="freezed.lib_1" FileName="freeze.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\freeze.lib" SelfReg="false" Sequence="574"/>
<ROW File="freeze34b.dll" Component_="freeze34b.dll" FileName="freeze~1.dll|freeze34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\freeze34b.dll" SelfReg="false" Sequence="334" DigSign="true"/>
<ROW File="freeze34b.dll_1" Component_="freeze34b.dll_1" FileName="freeze~1.dll|freeze34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\freeze34b.dll" SelfReg="false" Sequence="412" DigSign="true"/>
<ROW File="freeze34b.dll_2" Component_="freeze34b.dll_2" FileName="freeze~1.dll|freeze34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\freeze34b.dll" SelfReg="false" Sequence="441" DigSign="true"/>
@@ -931,28 +931,28 @@
<ROW File="freeze34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="freeze~1.pdb|freeze34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\freeze34bd.pdb" SelfReg="false" Sequence="386"/>
<ROW File="freeze34bd.pdb_1" Component_="freeze34bd.pdb" FileName="freeze~1.pdb|freeze34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\freeze34bd.pdb" SelfReg="false" Sequence="478"/>
<ROW File="freeze34bd.tds" Component_="icexml34bd.tds" FileName="freeze~1.tds|freeze34bd.tds" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\freeze34bd.tds" SelfReg="false" Sequence="423"/>
- <ROW File="freezed.lib" Component_="Ice.jar" FileName="freezed.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\freezed.lib" SelfReg="false" Sequence="539"/>
- <ROW File="freezed.lib_1" Component_="freezed.lib" FileName="freezed.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\freezed.lib" SelfReg="false" Sequence="551"/>
- <ROW File="freezed.lib_2" Component_="freezed.lib_1" FileName="freezed.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\freezed.lib" SelfReg="false" Sequence="577"/>
- <ROW File="fstream" Component_="wctype.h" FileName="fstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\fstream" SelfReg="false" Sequence="685"/>
- <ROW File="fstream.c" Component_="type_traits.h" FileName="_fstream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_fstream.c" SelfReg="false" Sequence="897"/>
- <ROW File="fstream.h" Component_="wctype.h" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\fstream.h" SelfReg="false" Sequence="686"/>
- <ROW File="fstream.h_1" Component_="vector.h" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\fstream.h" SelfReg="false" Sequence="770"/>
- <ROW File="fstream.h_2" Component_="type_traits.h" FileName="_fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_fstream.h" SelfReg="false" Sequence="898"/>
- <ROW File="fstream.h_3" Component_="strstream.h" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\fstream.h" SelfReg="false" Sequence="1024"/>
- <ROW File="fstream.h_4" Component_="strstream.h_1" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\fstream.h" SelfReg="false" Sequence="1061"/>
- <ROW File="fstream.h_5" Component_="strstream.h_2" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\fstream.h" SelfReg="false" Sequence="1067"/>
- <ROW File="fstream_1" Component_="strstream" FileName="fstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\fstream" SelfReg="false" Sequence="997"/>
- <ROW File="fstream_2" Component_="strstream_1" FileName="fstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\fstream" SelfReg="false" Sequence="1010"/>
- <ROW File="function.h" Component_="vector.h" FileName="function.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\function.h" SelfReg="false" Sequence="771"/>
- <ROW File="function.h_1" Component_="vector.h_1" FileName="function.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\function.h" SelfReg="false" Sequence="847"/>
- <ROW File="function.h_2" Component_="type_traits.h" FileName="_funct~1.h|_function.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_function.h" SelfReg="false" Sequence="899"/>
- <ROW File="function_adaptors.h" Component_="type_traits.h" FileName="_funct~2.h|_function_adaptors.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_function_adaptors.h" SelfReg="false" Sequence="900"/>
- <ROW File="function_base.h" Component_="type_traits.h" FileName="_funct~3.h|_function_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_function_base.h" SelfReg="false" Sequence="901"/>
- <ROW File="functional" Component_="wctype.h" FileName="functi~1|functional" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\functional" SelfReg="false" Sequence="687"/>
- <ROW File="glacier2.lib" Component_="Ice.jar" FileName="glacier2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\glacier2.lib" SelfReg="false" Sequence="527"/>
- <ROW File="glacier2.lib_1" Component_="freezed.lib" FileName="glacier2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\glacier2.lib" SelfReg="false" Sequence="565"/>
- <ROW File="glacier2.lib_2" Component_="freezed.lib_1" FileName="glacier2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\glacier2.lib" SelfReg="false" Sequence="587"/>
+ <ROW File="freezed.lib" Component_="Ice.jar" FileName="freezed.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\freezed.lib" SelfReg="false" Sequence="527"/>
+ <ROW File="freezed.lib_1" Component_="freezed.lib" FileName="freezed.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\freezed.lib" SelfReg="false" Sequence="539"/>
+ <ROW File="freezed.lib_2" Component_="freezed.lib_1" FileName="freezed.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\freezed.lib" SelfReg="false" Sequence="565"/>
+ <ROW File="fstream" Component_="wctype.h" FileName="fstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\fstream" SelfReg="false" Sequence="673"/>
+ <ROW File="fstream.c" Component_="type_traits.h" FileName="_fstream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_fstream.c" SelfReg="false" Sequence="885"/>
+ <ROW File="fstream.h" Component_="wctype.h" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\fstream.h" SelfReg="false" Sequence="674"/>
+ <ROW File="fstream.h_1" Component_="vector.h" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\fstream.h" SelfReg="false" Sequence="758"/>
+ <ROW File="fstream.h_2" Component_="type_traits.h" FileName="_fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_fstream.h" SelfReg="false" Sequence="886"/>
+ <ROW File="fstream.h_3" Component_="strstream.h" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\fstream.h" SelfReg="false" Sequence="1012"/>
+ <ROW File="fstream.h_4" Component_="strstream.h_1" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\fstream.h" SelfReg="false" Sequence="1049"/>
+ <ROW File="fstream.h_5" Component_="strstream.h_2" FileName="fstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\fstream.h" SelfReg="false" Sequence="1055"/>
+ <ROW File="fstream_1" Component_="strstream" FileName="fstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\fstream" SelfReg="false" Sequence="985"/>
+ <ROW File="fstream_2" Component_="strstream_1" FileName="fstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\fstream" SelfReg="false" Sequence="998"/>
+ <ROW File="function.h" Component_="vector.h" FileName="function.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\function.h" SelfReg="false" Sequence="759"/>
+ <ROW File="function.h_1" Component_="vector.h_1" FileName="function.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\function.h" SelfReg="false" Sequence="835"/>
+ <ROW File="function.h_2" Component_="type_traits.h" FileName="_funct~1.h|_function.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_function.h" SelfReg="false" Sequence="887"/>
+ <ROW File="function_adaptors.h" Component_="type_traits.h" FileName="_funct~2.h|_function_adaptors.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_function_adaptors.h" SelfReg="false" Sequence="888"/>
+ <ROW File="function_base.h" Component_="type_traits.h" FileName="_funct~3.h|_function_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_function_base.h" SelfReg="false" Sequence="889"/>
+ <ROW File="functional" Component_="wctype.h" FileName="functi~1|functional" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\functional" SelfReg="false" Sequence="675"/>
+ <ROW File="glacier2.lib" Component_="Ice.jar" FileName="glacier2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\glacier2.lib" SelfReg="false" Sequence="515"/>
+ <ROW File="glacier2.lib_1" Component_="freezed.lib" FileName="glacier2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\glacier2.lib" SelfReg="false" Sequence="553"/>
+ <ROW File="glacier2.lib_2" Component_="freezed.lib_1" FileName="glacier2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\glacier2.lib" SelfReg="false" Sequence="575"/>
<ROW File="glacier234b.dll" Component_="glacier234b.dll" FileName="glacie~1.dll|glacier234b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\glacier234b.dll" SelfReg="false" Sequence="336" DigSign="true"/>
<ROW File="glacier234b.dll_1" Component_="glacier234b.dll_1" FileName="glacie~1.dll|glacier234b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\glacier234b.dll" SelfReg="false" Sequence="413" DigSign="true"/>
<ROW File="glacier234b.dll_2" Component_="glacier234b.dll_2" FileName="glacie~1.dll|glacier234b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\glacier234b.dll" SelfReg="false" Sequence="443" DigSign="true"/>
@@ -962,40 +962,37 @@
<ROW File="glacier234bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="glacie~1.pdb|glacier234bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\glacier234bd.pdb" SelfReg="false" Sequence="388"/>
<ROW File="glacier234bd.pdb_1" Component_="freeze34bd.pdb" FileName="glacie~1.pdb|glacier234bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\glacier234bd.pdb" SelfReg="false" Sequence="480"/>
<ROW File="glacier234bd.tds" Component_="icexml34bd.tds" FileName="glacie~1.tds|glacier234bd.tds" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\glacier234bd.tds" SelfReg="false" Sequence="425"/>
- <ROW File="glacier2d.lib" Component_="Ice.jar" FileName="glacie~1.lib|glacier2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\glacier2d.lib" SelfReg="false" Sequence="540"/>
- <ROW File="glacier2d.lib_1" Component_="freezed.lib" FileName="glacie~1.lib|glacier2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\glacier2d.lib" SelfReg="false" Sequence="552"/>
- <ROW File="glacier2d.lib_2" Component_="freezed.lib_1" FileName="glacie~1.lib|glacier2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\glacier2d.lib" SelfReg="false" Sequence="578"/>
+ <ROW File="glacier2d.lib" Component_="Ice.jar" FileName="glacie~1.lib|glacier2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\glacier2d.lib" SelfReg="false" Sequence="528"/>
+ <ROW File="glacier2d.lib_1" Component_="freezed.lib" FileName="glacie~1.lib|glacier2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\glacier2d.lib" SelfReg="false" Sequence="540"/>
+ <ROW File="glacier2d.lib_2" Component_="freezed.lib_1" FileName="glacie~1.lib|glacier2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\glacier2d.lib" SelfReg="false" Sequence="566"/>
<ROW File="glacier2router.cfg" Component_="upgradeicegrid.py" FileName="glacie~1.cfg|glacier2router.cfg" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\config\glacier2router.cfg" SelfReg="false" Sequence="405"/>
<ROW File="glacier2router.exe" Component_="glacier2router.exe" FileName="glacie~1.exe|glacier2router.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\glacier2router.exe" SelfReg="false" Sequence="335" DigSign="true"/>
<ROW File="glacier2router.exe_1" Component_="glacier2router.exe_1" FileName="glacie~1.exe|glacier2router.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\glacier2router.exe" SelfReg="false" Sequence="442" DigSign="true"/>
- <ROW File="hash_fun.h" Component_="type_traits.h" FileName="_hash_~1.h|_hash_fun.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hash_fun.h" SelfReg="false" Sequence="902"/>
- <ROW File="hash_map" Component_="wctype.h" FileName="hash_map" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\hash_map" SelfReg="false" Sequence="688"/>
- <ROW File="hash_map.h" Component_="vector.h" FileName="hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\hash_map.h" SelfReg="false" Sequence="772"/>
- <ROW File="hash_map.h_1" Component_="vector.h_1" FileName="hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\hash_map.h" SelfReg="false" Sequence="848"/>
- <ROW File="hash_map.h_2" Component_="type_traits.h" FileName="_hash_~2.h|_hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hash_map.h" SelfReg="false" Sequence="903"/>
- <ROW File="hash_map.h_3" Component_="vector.h_3" FileName="_hash_~1.h|_hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_hash_map.h" SelfReg="false" Sequence="1053"/>
- <ROW File="hash_set" Component_="wctype.h" FileName="hash_set" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\hash_set" SelfReg="false" Sequence="689"/>
- <ROW File="hash_set.h" Component_="vector.h" FileName="hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\hash_set.h" SelfReg="false" Sequence="773"/>
- <ROW File="hash_set.h_1" Component_="vector.h_1" FileName="hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\hash_set.h" SelfReg="false" Sequence="849"/>
- <ROW File="hash_set.h_2" Component_="type_traits.h" FileName="_hash_~3.h|_hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hash_set.h" SelfReg="false" Sequence="904"/>
- <ROW File="hash_set.h_3" Component_="vector.h_3" FileName="_hash_~2.h|_hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_hash_set.h" SelfReg="false" Sequence="1054"/>
- <ROW File="hashtable.c" Component_="type_traits.h" FileName="_hasht~1.c|_hashtable.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hashtable.c" SelfReg="false" Sequence="905"/>
- <ROW File="hashtable.h" Component_="vector.h_1" FileName="hashta~1.h|hashtable.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\hashtable.h" SelfReg="false" Sequence="850"/>
- <ROW File="hashtable.h_1" Component_="type_traits.h" FileName="_hasht~1.h|_hashtable.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hashtable.h" SelfReg="false" Sequence="906"/>
- <ROW File="hashtable.h_2" Component_="vector.h_2" FileName="_hasht~1.h|_hashtable.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_hashtable.h" SelfReg="false" Sequence="1043"/>
- <ROW File="heap.c" Component_="type_traits.h" FileName="_heap.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_heap.c" SelfReg="false" Sequence="907"/>
- <ROW File="heap.h" Component_="vector.h_1" FileName="heap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\heap.h" SelfReg="false" Sequence="851"/>
- <ROW File="heap.h_1" Component_="type_traits.h" FileName="_heap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_heap.h" SelfReg="false" Sequence="908"/>
- <ROW File="ice.lib" Component_="Ice.jar" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\ice.lib" SelfReg="false" Sequence="528"/>
- <ROW File="ice.lib_1" Component_="freezed.lib" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\ice.lib" SelfReg="false" Sequence="566"/>
- <ROW File="ice.lib_2" Component_="freezed.lib_1" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\ice.lib" SelfReg="false" Sequence="588"/>
- <ROW File="ice.lib_3" Component_="sliced.lib" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\ice.lib" SelfReg="false" Sequence="1091"/>
+ <ROW File="hash_fun.h" Component_="type_traits.h" FileName="_hash_~1.h|_hash_fun.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hash_fun.h" SelfReg="false" Sequence="890"/>
+ <ROW File="hash_map" Component_="wctype.h" FileName="hash_map" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\hash_map" SelfReg="false" Sequence="676"/>
+ <ROW File="hash_map.h" Component_="vector.h" FileName="hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\hash_map.h" SelfReg="false" Sequence="760"/>
+ <ROW File="hash_map.h_1" Component_="vector.h_1" FileName="hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\hash_map.h" SelfReg="false" Sequence="836"/>
+ <ROW File="hash_map.h_2" Component_="type_traits.h" FileName="_hash_~2.h|_hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hash_map.h" SelfReg="false" Sequence="891"/>
+ <ROW File="hash_map.h_3" Component_="vector.h_3" FileName="_hash_~1.h|_hash_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_hash_map.h" SelfReg="false" Sequence="1041"/>
+ <ROW File="hash_set" Component_="wctype.h" FileName="hash_set" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\hash_set" SelfReg="false" Sequence="677"/>
+ <ROW File="hash_set.h" Component_="vector.h" FileName="hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\hash_set.h" SelfReg="false" Sequence="761"/>
+ <ROW File="hash_set.h_1" Component_="vector.h_1" FileName="hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\hash_set.h" SelfReg="false" Sequence="837"/>
+ <ROW File="hash_set.h_2" Component_="type_traits.h" FileName="_hash_~3.h|_hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hash_set.h" SelfReg="false" Sequence="892"/>
+ <ROW File="hash_set.h_3" Component_="vector.h_3" FileName="_hash_~2.h|_hash_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_hash_set.h" SelfReg="false" Sequence="1042"/>
+ <ROW File="hashtable.c" Component_="type_traits.h" FileName="_hasht~1.c|_hashtable.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hashtable.c" SelfReg="false" Sequence="893"/>
+ <ROW File="hashtable.h" Component_="vector.h_1" FileName="hashta~1.h|hashtable.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\hashtable.h" SelfReg="false" Sequence="838"/>
+ <ROW File="hashtable.h_1" Component_="type_traits.h" FileName="_hasht~1.h|_hashtable.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_hashtable.h" SelfReg="false" Sequence="894"/>
+ <ROW File="hashtable.h_2" Component_="vector.h_2" FileName="_hasht~1.h|_hashtable.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_hashtable.h" SelfReg="false" Sequence="1031"/>
+ <ROW File="heap.c" Component_="type_traits.h" FileName="_heap.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_heap.c" SelfReg="false" Sequence="895"/>
+ <ROW File="heap.h" Component_="vector.h_1" FileName="heap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\heap.h" SelfReg="false" Sequence="839"/>
+ <ROW File="heap.h_1" Component_="type_traits.h" FileName="_heap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_heap.h" SelfReg="false" Sequence="896"/>
+ <ROW File="ice.lib" Component_="Ice.jar" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\ice.lib" SelfReg="false" Sequence="516"/>
+ <ROW File="ice.lib_1" Component_="freezed.lib" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\ice.lib" SelfReg="false" Sequence="554"/>
+ <ROW File="ice.lib_2" Component_="freezed.lib_1" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\ice.lib" SelfReg="false" Sequence="576"/>
+ <ROW File="ice.lib_3" Component_="sliced.lib" FileName="ice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\ice.lib" SelfReg="false" Sequence="1079"/>
<ROW File="ice34b.dll" Component_="ice34b.dll" FileName="ice34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\ice34b.dll" SelfReg="false" Sequence="337" DigSign="true"/>
<ROW File="ice34b.dll_1" Component_="ice34b.dll_1" FileName="ice34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\ice34b.dll" SelfReg="false" Sequence="414" DigSign="true"/>
<ROW File="ice34b.dll_2" Component_="ice34b.dll_2" FileName="ice34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\ice34b.dll" SelfReg="false" Sequence="444" DigSign="true"/>
- <ROW File="ice34b_vc6.dll" Component_="ice34b_vc6.dll" FileName="ice34b~1.dll|ice34b_vc6.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\ice34b_vc6.dll" SelfReg="false" Sequence="510" DigSign="true"/>
- <ROW File="ice34b_vc6d.dll" Component_="ice34b_vc6d.dll" FileName="ice34b~2.dll|ice34b_vc6d.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\ice34b_vc6d.dll" SelfReg="false" Sequence="515" DigSign="true"/>
- <ROW File="ice34b_vc6d.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="ice34b~1.pdb|ice34b_vc6d.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\ice34b_vc6d.pdb" SelfReg="false" Sequence="514"/>
<ROW File="ice34bd.dll" Component_="ice34bd.dll" FileName="ice34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\ice34bd.dll" SelfReg="false" Sequence="391" DigSign="true"/>
<ROW File="ice34bd.dll_1" Component_="ice34bd.dll_1" FileName="ice34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\ice34bd.dll" SelfReg="false" Sequence="426" DigSign="true"/>
<ROW File="ice34bd.dll_2" Component_="ice34bd.dll_2" FileName="ice34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\ice34bd.dll" SelfReg="false" Sequence="483" DigSign="true"/>
@@ -1004,8 +1001,8 @@
<ROW File="ice34bd.tds" Component_="icexml34bd.tds" FileName="ice34bd.tds" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\ice34bd.tds" SelfReg="false" Sequence="427"/>
<ROW File="icebox.exe" Component_="icebox.exe" FileName="icebox.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icebox.exe" SelfReg="false" Sequence="338" DigSign="true"/>
<ROW File="icebox.exe_1" Component_="icebox.exe_1" FileName="icebox.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icebox.exe" SelfReg="false" Sequence="445" DigSign="true"/>
- <ROW File="icebox.lib" Component_="Ice.jar" FileName="icebox.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icebox.lib" SelfReg="false" Sequence="529"/>
- <ROW File="icebox.lib_1" Component_="freezed.lib" FileName="icebox.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icebox.lib" SelfReg="false" Sequence="567"/>
+ <ROW File="icebox.lib" Component_="Ice.jar" FileName="icebox.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icebox.lib" SelfReg="false" Sequence="517"/>
+ <ROW File="icebox.lib_1" Component_="freezed.lib" FileName="icebox.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icebox.lib" SelfReg="false" Sequence="555"/>
<ROW File="icebox34b.dll" Component_="icebox34b.dll" FileName="icebox~1.dll|icebox34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icebox34b.dll" SelfReg="false" Sequence="339" DigSign="true"/>
<ROW File="icebox34b.dll_1" Component_="icebox34b.dll_1" FileName="icebox~1.dll|icebox34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icebox34b.dll" SelfReg="false" Sequence="446" DigSign="true"/>
<ROW File="icebox34bd.dll" Component_="icebox34bd.dll" FileName="icebox~2.dll|icebox34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icebox34bd.dll" SelfReg="false" Sequence="393" DigSign="true"/>
@@ -1016,31 +1013,31 @@
<ROW File="iceboxadmin.exe_1" Component_="iceboxadmin.exe_1" FileName="icebox~1.exe|iceboxadmin.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\iceboxadmin.exe" SelfReg="false" Sequence="447" DigSign="true"/>
<ROW File="iceboxd.exe" Component_="iceboxd.exe" FileName="iceboxd.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\iceboxd.exe" SelfReg="false" Sequence="394" DigSign="true"/>
<ROW File="iceboxd.exe_1" Component_="iceboxd.exe_1" FileName="iceboxd.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\iceboxd.exe" SelfReg="false" Sequence="486" DigSign="true"/>
- <ROW File="iceboxd.lib" Component_="Ice.jar" FileName="iceboxd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\iceboxd.lib" SelfReg="false" Sequence="541"/>
- <ROW File="iceboxd.lib_1" Component_="freezed.lib" FileName="iceboxd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\iceboxd.lib" SelfReg="false" Sequence="553"/>
+ <ROW File="iceboxd.lib" Component_="Ice.jar" FileName="iceboxd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\iceboxd.lib" SelfReg="false" Sequence="529"/>
+ <ROW File="iceboxd.lib_1" Component_="freezed.lib" FileName="iceboxd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\iceboxd.lib" SelfReg="false" Sequence="541"/>
<ROW File="iceboxd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="iceboxd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\iceboxd.pdb" SelfReg="false" Sequence="395"/>
<ROW File="iceboxd.pdb_1" Component_="freeze34bd.pdb" FileName="iceboxd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\iceboxd.pdb" SelfReg="false" Sequence="487"/>
<ROW File="iceboxnet.exe" Component_="iceboxnet.exe" FileName="icebox~1.exe|iceboxnet.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\iceboxnet.exe" SelfReg="false" Sequence="316" DigSign="true"/>
<ROW File="iceboxnet.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icebox~1.pdb|iceboxnet.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cs\bin\iceboxnet.pdb" SelfReg="false" Sequence="317"/>
<ROW File="iceca" Component_="stlport_vc6_stldebug46.pdb" FileName="iceca" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\iceca" SelfReg="false" Sequence="341"/>
<ROW File="iceca.bat" Component_="stlport_vc6_stldebug46.pdb" FileName="iceca.bat" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\iceca.bat" SelfReg="false" Sequence="342"/>
- <ROW File="iced.lib" Component_="Ice.jar" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\iced.lib" SelfReg="false" Sequence="542"/>
- <ROW File="iced.lib_1" Component_="freezed.lib" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\iced.lib" SelfReg="false" Sequence="554"/>
- <ROW File="iced.lib_2" Component_="freezed.lib_1" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\iced.lib" SelfReg="false" Sequence="579"/>
- <ROW File="iced.lib_3" Component_="sliced.lib" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\iced.lib" SelfReg="false" Sequence="1088"/>
- <ROW File="icedb.lib" Component_="Ice.jar" FileName="icedb.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icedb.lib" SelfReg="false" Sequence="530"/>
- <ROW File="icedb.lib_1" Component_="freezed.lib" FileName="icedb.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icedb.lib" SelfReg="false" Sequence="568"/>
+ <ROW File="iced.lib" Component_="Ice.jar" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\iced.lib" SelfReg="false" Sequence="530"/>
+ <ROW File="iced.lib_1" Component_="freezed.lib" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\iced.lib" SelfReg="false" Sequence="542"/>
+ <ROW File="iced.lib_2" Component_="freezed.lib_1" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\iced.lib" SelfReg="false" Sequence="567"/>
+ <ROW File="iced.lib_3" Component_="sliced.lib" FileName="iced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\iced.lib" SelfReg="false" Sequence="1076"/>
+ <ROW File="icedb.lib" Component_="Ice.jar" FileName="icedb.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icedb.lib" SelfReg="false" Sequence="518"/>
+ <ROW File="icedb.lib_1" Component_="freezed.lib" FileName="icedb.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icedb.lib" SelfReg="false" Sequence="556"/>
<ROW File="icedb34b.dll" Component_="icedb34b.dll" FileName="icedb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icedb34b.dll" SelfReg="false" Sequence="343" DigSign="true"/>
<ROW File="icedb34b.dll_1" Component_="icedb34b.dll_1" FileName="icedb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icedb34b.dll" SelfReg="false" Sequence="448" DigSign="true"/>
<ROW File="icedb34bd.dll" Component_="icedb34bd.dll" FileName="icedb3~1.dll|icedb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icedb34bd.dll" SelfReg="false" Sequence="397" DigSign="true"/>
<ROW File="icedb34bd.dll_1" Component_="icedb34bd.dll_1" FileName="icedb3~1.dll|icedb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icedb34bd.dll" SelfReg="false" Sequence="489" DigSign="true"/>
<ROW File="icedb34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icedb3~1.pdb|icedb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icedb34bd.pdb" SelfReg="false" Sequence="396"/>
<ROW File="icedb34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icedb3~1.pdb|icedb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icedb34bd.pdb" SelfReg="false" Sequence="488"/>
- <ROW File="icedbd.lib" Component_="Ice.jar" FileName="icedbd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icedbd.lib" SelfReg="false" Sequence="543"/>
- <ROW File="icedbd.lib_1" Component_="freezed.lib" FileName="icedbd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icedbd.lib" SelfReg="false" Sequence="555"/>
- <ROW File="icegrid.lib" Component_="Ice.jar" FileName="icegrid.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icegrid.lib" SelfReg="false" Sequence="531"/>
- <ROW File="icegrid.lib_1" Component_="freezed.lib" FileName="icegrid.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icegrid.lib" SelfReg="false" Sequence="569"/>
- <ROW File="icegrid.lib_2" Component_="freezed.lib_1" FileName="icegrid.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icegrid.lib" SelfReg="false" Sequence="589"/>
+ <ROW File="icedbd.lib" Component_="Ice.jar" FileName="icedbd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icedbd.lib" SelfReg="false" Sequence="531"/>
+ <ROW File="icedbd.lib_1" Component_="freezed.lib" FileName="icedbd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icedbd.lib" SelfReg="false" Sequence="543"/>
+ <ROW File="icegrid.lib" Component_="Ice.jar" FileName="icegrid.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icegrid.lib" SelfReg="false" Sequence="519"/>
+ <ROW File="icegrid.lib_1" Component_="freezed.lib" FileName="icegrid.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icegrid.lib" SelfReg="false" Sequence="557"/>
+ <ROW File="icegrid.lib_2" Component_="freezed.lib_1" FileName="icegrid.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icegrid.lib" SelfReg="false" Sequence="577"/>
<ROW File="icegrid34b.dll" Component_="icegrid34b.dll" FileName="icegri~1.dll|icegrid34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icegrid34b.dll" SelfReg="false" Sequence="344" DigSign="true"/>
<ROW File="icegrid34b.dll_1" Component_="icegrid34b.dll_1" FileName="icegri~1.dll|icegrid34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\icegrid34b.dll" SelfReg="false" Sequence="415" DigSign="true"/>
<ROW File="icegrid34b.dll_2" Component_="icegrid34b.dll_2" FileName="icegri~1.dll|icegrid34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icegrid34b.dll" SelfReg="false" Sequence="449" DigSign="true"/>
@@ -1055,9 +1052,9 @@
<ROW File="icegrid_slice.3.3.ice.gz" Component_="upgradeicegrid.py" FileName="icegri~3.gz|icegrid-slice.3.3.ice.gz" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\config\icegrid-slice.3.3.ice.gz" SelfReg="false" Sequence="410"/>
<ROW File="icegridadmin.exe" Component_="icegridadmin.exe" FileName="icegri~1.exe|icegridadmin.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icegridadmin.exe" SelfReg="false" Sequence="345" DigSign="true"/>
<ROW File="icegridadmin.exe_1" Component_="icegridadmin.exe_1" FileName="icegri~1.exe|icegridadmin.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icegridadmin.exe" SelfReg="false" Sequence="450" DigSign="true"/>
- <ROW File="icegridd.lib" Component_="Ice.jar" FileName="icegridd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icegridd.lib" SelfReg="false" Sequence="544"/>
- <ROW File="icegridd.lib_1" Component_="freezed.lib" FileName="icegridd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icegridd.lib" SelfReg="false" Sequence="556"/>
- <ROW File="icegridd.lib_2" Component_="freezed.lib_1" FileName="icegridd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icegridd.lib" SelfReg="false" Sequence="580"/>
+ <ROW File="icegridd.lib" Component_="Ice.jar" FileName="icegridd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icegridd.lib" SelfReg="false" Sequence="532"/>
+ <ROW File="icegridd.lib_1" Component_="freezed.lib" FileName="icegridd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icegridd.lib" SelfReg="false" Sequence="544"/>
+ <ROW File="icegridd.lib_2" Component_="freezed.lib_1" FileName="icegridd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icegridd.lib" SelfReg="false" Sequence="568"/>
<ROW File="icegridfreezedb34b.dll" Component_="icegridfreezedb34b.dll" FileName="icegri~2.dll|icegridfreezedb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icegridfreezedb34b.dll" SelfReg="false" Sequence="346" DigSign="true"/>
<ROW File="icegridfreezedb34b.dll_1" Component_="icegridfreezedb34b.dll_1" FileName="icegri~2.dll|icegridfreezedb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icegridfreezedb34b.dll" SelfReg="false" Sequence="451" DigSign="true"/>
<ROW File="icegridfreezedb34bd.dll" Component_="icegridfreezedb34bd.dll" FileName="icegri~4.dll|icegridfreezedb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icegridfreezedb34bd.dll" SelfReg="false" Sequence="401" DigSign="true"/>
@@ -1070,15 +1067,15 @@
<ROW File="icegridregistry.cfg" Component_="upgradeicegrid.py" FileName="icegri~2.cfg|icegridregistry.cfg" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\config\icegridregistry.cfg" SelfReg="false" Sequence="407"/>
<ROW File="icegridregistry.exe" Component_="icegridregistry.exe" FileName="icegri~3.exe|icegridregistry.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icegridregistry.exe" SelfReg="false" Sequence="348" DigSign="true"/>
<ROW File="icegridregistry.exe_1" Component_="icegridregistry.exe_1" FileName="icegri~3.exe|icegridregistry.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icegridregistry.exe" SelfReg="false" Sequence="453" DigSign="true"/>
- <ROW File="icegridsqldb34b.dll" Component_="icegridsqldb34b.dll" FileName="icegri~6.dll|icegridsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icegridsqldb34b.dll" SelfReg="false" Sequence="1078" DigSign="true"/>
- <ROW File="icegridsqldb34b.dll_1" Component_="icegridsqldb34b.dll_1" FileName="icegri~6.dll|icegridsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icegridsqldb34b.dll" SelfReg="false" Sequence="1084" DigSign="true"/>
- <ROW File="icegridsqldb34bd.dll" Component_="icegridsqldb34bd.dll" FileName="icegri~5.dll|icegridsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icegridsqldb34bd.dll" SelfReg="false" Sequence="1076" DigSign="true"/>
- <ROW File="icegridsqldb34bd.dll_1" Component_="icegridsqldb34bd.dll_1" FileName="icegri~5.dll|icegridsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icegridsqldb34bd.dll" SelfReg="false" Sequence="1082" DigSign="true"/>
- <ROW File="icegridsqldb34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icegri~3.pdb|icegridsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icegridsqldb34bd.pdb" SelfReg="false" Sequence="1075"/>
- <ROW File="icegridsqldb34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icegri~3.pdb|icegridsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icegridsqldb34bd.pdb" SelfReg="false" Sequence="1081"/>
- <ROW File="icepatch2.lib" Component_="Ice.jar" FileName="icepat~1.lib|icepatch2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icepatch2.lib" SelfReg="false" Sequence="532"/>
- <ROW File="icepatch2.lib_1" Component_="freezed.lib" FileName="icepat~2.lib|icepatch2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icepatch2.lib" SelfReg="false" Sequence="570"/>
- <ROW File="icepatch2.lib_2" Component_="freezed.lib_1" FileName="icepat~2.lib|icepatch2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icepatch2.lib" SelfReg="false" Sequence="590"/>
+ <ROW File="icegridsqldb34b.dll" Component_="icegridsqldb34b.dll" FileName="icegri~6.dll|icegridsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icegridsqldb34b.dll" SelfReg="false" Sequence="1066" DigSign="true"/>
+ <ROW File="icegridsqldb34b.dll_1" Component_="icegridsqldb34b.dll_1" FileName="icegri~6.dll|icegridsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icegridsqldb34b.dll" SelfReg="false" Sequence="1072" DigSign="true"/>
+ <ROW File="icegridsqldb34bd.dll" Component_="icegridsqldb34bd.dll" FileName="icegri~5.dll|icegridsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icegridsqldb34bd.dll" SelfReg="false" Sequence="1064" DigSign="true"/>
+ <ROW File="icegridsqldb34bd.dll_1" Component_="icegridsqldb34bd.dll_1" FileName="icegri~5.dll|icegridsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icegridsqldb34bd.dll" SelfReg="false" Sequence="1070" DigSign="true"/>
+ <ROW File="icegridsqldb34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icegri~3.pdb|icegridsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icegridsqldb34bd.pdb" SelfReg="false" Sequence="1063"/>
+ <ROW File="icegridsqldb34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icegri~3.pdb|icegridsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icegridsqldb34bd.pdb" SelfReg="false" Sequence="1069"/>
+ <ROW File="icepatch2.lib" Component_="Ice.jar" FileName="icepat~1.lib|icepatch2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icepatch2.lib" SelfReg="false" Sequence="520"/>
+ <ROW File="icepatch2.lib_1" Component_="freezed.lib" FileName="icepat~2.lib|icepatch2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icepatch2.lib" SelfReg="false" Sequence="558"/>
+ <ROW File="icepatch2.lib_2" Component_="freezed.lib_1" FileName="icepat~2.lib|icepatch2.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icepatch2.lib" SelfReg="false" Sequence="578"/>
<ROW File="icepatch234b.dll" Component_="icepatch234b.dll" FileName="icepat~2.dll|icepatch234b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icepatch234b.dll" SelfReg="false" Sequence="352" DigSign="true"/>
<ROW File="icepatch234b.dll_1" Component_="icepatch234b.dll_1" FileName="icepat~1.dll|icepatch234b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\icepatch234b.dll" SelfReg="false" Sequence="416" DigSign="true"/>
<ROW File="icepatch234b.dll_2" Component_="icepatch234b.dll_2" FileName="icepat~1.dll|icepatch234b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icepatch234b.dll" SelfReg="false" Sequence="457" DigSign="true"/>
@@ -1092,36 +1089,36 @@
<ROW File="icepatch2calc.exe_1" Component_="icepatch2calc.exe_1" FileName="icepat~1.exe|icepatch2calc.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icepatch2calc.exe" SelfReg="false" Sequence="454" DigSign="true"/>
<ROW File="icepatch2client.exe" Component_="icepatch2client.exe" FileName="icepat~2.exe|icepatch2client.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icepatch2client.exe" SelfReg="false" Sequence="350" DigSign="true"/>
<ROW File="icepatch2client.exe_1" Component_="icepatch2client.exe_1" FileName="icepat~2.exe|icepatch2client.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icepatch2client.exe" SelfReg="false" Sequence="455" DigSign="true"/>
- <ROW File="icepatch2d.lib" Component_="Ice.jar" FileName="icepat~2.lib|icepatch2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icepatch2d.lib" SelfReg="false" Sequence="545"/>
- <ROW File="icepatch2d.lib_1" Component_="freezed.lib" FileName="icepat~1.lib|icepatch2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icepatch2d.lib" SelfReg="false" Sequence="557"/>
- <ROW File="icepatch2d.lib_2" Component_="freezed.lib_1" FileName="icepat~1.lib|icepatch2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icepatch2d.lib" SelfReg="false" Sequence="581"/>
+ <ROW File="icepatch2d.lib" Component_="Ice.jar" FileName="icepat~2.lib|icepatch2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icepatch2d.lib" SelfReg="false" Sequence="533"/>
+ <ROW File="icepatch2d.lib_1" Component_="freezed.lib" FileName="icepat~1.lib|icepatch2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icepatch2d.lib" SelfReg="false" Sequence="545"/>
+ <ROW File="icepatch2d.lib_2" Component_="freezed.lib_1" FileName="icepat~1.lib|icepatch2d.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icepatch2d.lib" SelfReg="false" Sequence="569"/>
<ROW File="icepatch2server.exe" Component_="icepatch2server.exe" FileName="icepat~3.exe|icepatch2server.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icepatch2server.exe" SelfReg="false" Sequence="351" DigSign="true"/>
<ROW File="icepatch2server.exe_1" Component_="icepatch2server.exe_1" FileName="icepat~3.exe|icepatch2server.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icepatch2server.exe" SelfReg="false" Sequence="456" DigSign="true"/>
<ROW File="iceserviceinstall.exe" Component_="iceserviceinstall.exe" FileName="iceser~1.exe|iceserviceinstall.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\iceserviceinstall.exe" SelfReg="false" Sequence="353" DigSign="true"/>
<ROW File="iceserviceinstall.exe_1" Component_="iceserviceinstall.exe_1" FileName="iceser~1.exe|iceserviceinstall.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\iceserviceinstall.exe" SelfReg="false" Sequence="458" DigSign="true"/>
- <ROW File="icessl.lib" Component_="Ice.jar" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icessl.lib" SelfReg="false" Sequence="533"/>
- <ROW File="icessl.lib_1" Component_="freezed.lib" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icessl.lib" SelfReg="false" Sequence="571"/>
- <ROW File="icessl.lib_2" Component_="freezed.lib_1" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icessl.lib" SelfReg="false" Sequence="591"/>
- <ROW File="icessl.lib_3" Component_="sliced.lib" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\icessl.lib" SelfReg="false" Sequence="1174"/>
+ <ROW File="icessl.lib" Component_="Ice.jar" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icessl.lib" SelfReg="false" Sequence="521"/>
+ <ROW File="icessl.lib_1" Component_="freezed.lib" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icessl.lib" SelfReg="false" Sequence="559"/>
+ <ROW File="icessl.lib_2" Component_="freezed.lib_1" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icessl.lib" SelfReg="false" Sequence="579"/>
+ <ROW File="icessl.lib_3" Component_="sliced.lib" FileName="icessl.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\icessl.lib" SelfReg="false" Sequence="1162"/>
<ROW File="icessl34b.dll" Component_="icessl34b.dll" FileName="icessl~1.dll|icessl34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icessl34b.dll" SelfReg="false" Sequence="354" DigSign="true"/>
<ROW File="icessl34b.dll_1" Component_="icessl34b.dll_1" FileName="icessl~1.dll|icessl34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\icessl34b.dll" SelfReg="false" Sequence="417" DigSign="true"/>
<ROW File="icessl34b.dll_2" Component_="icessl34b.dll_2" FileName="icessl~1.dll|icessl34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icessl34b.dll" SelfReg="false" Sequence="459" DigSign="true"/>
- <ROW File="icessl34b_vc6.dll" Component_="icessl34b_vc6.dll" FileName="icessl~3.dll|icessl34b_vc6.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\icessl34b_vc6.dll" SelfReg="false" Sequence="511" DigSign="true"/>
- <ROW File="icessl34b_vc6d.dll" Component_="icessl34b_vc6d.dll" FileName="icessl~4.dll|icessl34b_vc6d.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\icessl34b_vc6d.dll" SelfReg="false" Sequence="517" DigSign="true"/>
- <ROW File="icessl34b_vc6d.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icessl~2.pdb|icessl34b_vc6d.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\icessl34b_vc6d.pdb" SelfReg="false" Sequence="516"/>
<ROW File="icessl34bd.dll" Component_="icessl34bd.dll" FileName="icessl~2.dll|icessl34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icessl34bd.dll" SelfReg="false" Sequence="373" DigSign="true"/>
<ROW File="icessl34bd.dll_1" Component_="icessl34bd.dll_1" FileName="icessl~2.dll|icessl34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\icessl34bd.dll" SelfReg="false" Sequence="432" DigSign="true"/>
<ROW File="icessl34bd.dll_2" Component_="icessl34bd.dll_2" FileName="icessl~2.dll|icessl34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icessl34bd.dll" SelfReg="false" Sequence="497" DigSign="true"/>
<ROW File="icessl34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icessl~1.pdb|icessl34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icessl34bd.pdb" SelfReg="false" Sequence="372"/>
<ROW File="icessl34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icessl~1.pdb|icessl34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icessl34bd.pdb" SelfReg="false" Sequence="496"/>
<ROW File="icessl34bd.tds" Component_="icexml34bd.tds" FileName="icessl~1.tds|icessl34bd.tds" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\icessl34bd.tds" SelfReg="false" Sequence="433"/>
- <ROW File="icessld.lib" Component_="Ice.jar" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icessld.lib" SelfReg="false" Sequence="546"/>
- <ROW File="icessld.lib_1" Component_="freezed.lib" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icessld.lib" SelfReg="false" Sequence="558"/>
- <ROW File="icessld.lib_2" Component_="freezed.lib_1" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icessld.lib" SelfReg="false" Sequence="582"/>
- <ROW File="icessld.lib_3" Component_="sliced.lib" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\icessld.lib" SelfReg="false" Sequence="1175"/>
- <ROW File="icestorm.lib" Component_="Ice.jar" FileName="icestorm.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icestorm.lib" SelfReg="false" Sequence="534"/>
- <ROW File="icestorm.lib_1" Component_="freezed.lib" FileName="icestorm.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icestorm.lib" SelfReg="false" Sequence="572"/>
- <ROW File="icestorm.lib_2" Component_="freezed.lib_1" FileName="icestorm.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icestorm.lib" SelfReg="false" Sequence="592"/>
+ <ROW File="icessld.lib" Component_="Ice.jar" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icessld.lib" SelfReg="false" Sequence="534"/>
+ <ROW File="icessld.lib_1" Component_="freezed.lib" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icessld.lib" SelfReg="false" Sequence="546"/>
+ <ROW File="icessld.lib_2" Component_="freezed.lib_1" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icessld.lib" SelfReg="false" Sequence="570"/>
+ <ROW File="icessld.lib_3" Component_="sliced.lib" FileName="icessld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\icessld.lib" SelfReg="false" Sequence="1163"/>
+ <ROW File="icesslvc60_34b.dll" Component_="icesslvc60_34b.dll" FileName="icessl~6.dll|icesslvc60_34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\icesslvc60_34b.dll" SelfReg="false" Sequence="1173"/>
+ <ROW File="icesslvc60_34bd.dll" Component_="icesslvc60_34bd.dll" FileName="icessl~5.dll|icesslvc60_34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\icesslvc60_34bd.dll" SelfReg="false" Sequence="1166"/>
+ <ROW File="icesslvc60_34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icessl~3.pdb|icesslvc60_34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\icesslvc60_34bd.pdb" SelfReg="false" Sequence="1165"/>
+ <ROW File="icestorm.lib" Component_="Ice.jar" FileName="icestorm.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icestorm.lib" SelfReg="false" Sequence="522"/>
+ <ROW File="icestorm.lib_1" Component_="freezed.lib" FileName="icestorm.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icestorm.lib" SelfReg="false" Sequence="560"/>
+ <ROW File="icestorm.lib_2" Component_="freezed.lib_1" FileName="icestorm.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icestorm.lib" SelfReg="false" Sequence="580"/>
<ROW File="icestorm34b.dll" Component_="icestorm34b.dll" FileName="icesto~1.dll|icestorm34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icestorm34b.dll" SelfReg="false" Sequence="355" DigSign="true"/>
<ROW File="icestorm34b.dll_1" Component_="icestorm34b.dll_1" FileName="icesto~1.dll|icestorm34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\icestorm34b.dll" SelfReg="false" Sequence="418" DigSign="true"/>
<ROW File="icestorm34b.dll_2" Component_="icestorm34b.dll_2" FileName="icesto~1.dll|icestorm34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icestorm34b.dll" SelfReg="false" Sequence="460" DigSign="true"/>
@@ -1133,9 +1130,9 @@
<ROW File="icestorm34bd.tds" Component_="icexml34bd.tds" FileName="icesto~1.tds|icestorm34bd.tds" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\icestorm34bd.tds" SelfReg="false" Sequence="435"/>
<ROW File="icestormadmin.exe" Component_="icestormadmin.exe" FileName="icesto~1.exe|icestormadmin.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icestormadmin.exe" SelfReg="false" Sequence="356" DigSign="true"/>
<ROW File="icestormadmin.exe_1" Component_="icestormadmin.exe_1" FileName="icesto~1.exe|icestormadmin.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icestormadmin.exe" SelfReg="false" Sequence="461" DigSign="true"/>
- <ROW File="icestormd.lib" Component_="Ice.jar" FileName="icesto~3.lib|icestormd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icestormd.lib" SelfReg="false" Sequence="547"/>
- <ROW File="icestormd.lib_1" Component_="freezed.lib" FileName="icesto~1.lib|icestormd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icestormd.lib" SelfReg="false" Sequence="559"/>
- <ROW File="icestormd.lib_2" Component_="freezed.lib_1" FileName="icesto~1.lib|icestormd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icestormd.lib" SelfReg="false" Sequence="583"/>
+ <ROW File="icestormd.lib" Component_="Ice.jar" FileName="icesto~3.lib|icestormd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icestormd.lib" SelfReg="false" Sequence="535"/>
+ <ROW File="icestormd.lib_1" Component_="freezed.lib" FileName="icesto~1.lib|icestormd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icestormd.lib" SelfReg="false" Sequence="547"/>
+ <ROW File="icestormd.lib_2" Component_="freezed.lib_1" FileName="icesto~1.lib|icestormd.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icestormd.lib" SelfReg="false" Sequence="571"/>
<ROW File="icestormfreezedb34b.dll" Component_="icestormfreezedb34b.dll" FileName="icesto~2.dll|icestormfreezedb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icestormfreezedb34b.dll" SelfReg="false" Sequence="357" DigSign="true"/>
<ROW File="icestormfreezedb34b.dll_1" Component_="icestormfreezedb34b.dll_1" FileName="icesto~2.dll|icestormfreezedb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icestormfreezedb34b.dll" SelfReg="false" Sequence="462" DigSign="true"/>
<ROW File="icestormfreezedb34bd.dll" Component_="icestormfreezedb34bd.dll" FileName="icesto~5.dll|icestormfreezedb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icestormfreezedb34bd.dll" SelfReg="false" Sequence="377" DigSign="true"/>
@@ -1144,45 +1141,48 @@
<ROW File="icestormfreezedb34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icesto~2.pdb|icestormfreezedb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icestormfreezedb34bd.pdb" SelfReg="false" Sequence="500"/>
<ROW File="icestormmigrate.exe" Component_="icestormmigrate.exe" FileName="icesto~2.exe|icestormmigrate.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icestormmigrate.exe" SelfReg="false" Sequence="358" DigSign="true"/>
<ROW File="icestormmigrate.exe_1" Component_="icestormmigrate.exe_1" FileName="icesto~2.exe|icestormmigrate.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icestormmigrate.exe" SelfReg="false" Sequence="463" DigSign="true"/>
- <ROW File="icestormservice.lib" Component_="Ice.jar" FileName="icesto~2.lib|icestormservice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icestormservice.lib" SelfReg="false" Sequence="535"/>
- <ROW File="icestormservice.lib_1" Component_="freezed.lib" FileName="icesto~5.lib|icestormservice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icestormservice.lib" SelfReg="false" Sequence="573"/>
+ <ROW File="icestormservice.lib" Component_="Ice.jar" FileName="icesto~2.lib|icestormservice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icestormservice.lib" SelfReg="false" Sequence="523"/>
+ <ROW File="icestormservice.lib_1" Component_="freezed.lib" FileName="icesto~5.lib|icestormservice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icestormservice.lib" SelfReg="false" Sequence="561"/>
<ROW File="icestormservice34b.dll" Component_="icestormservice34b.dll" FileName="icesto~3.dll|icestormservice34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icestormservice34b.dll" SelfReg="false" Sequence="359" DigSign="true"/>
<ROW File="icestormservice34b.dll_1" Component_="icestormservice34b.dll_1" FileName="icesto~3.dll|icestormservice34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icestormservice34b.dll" SelfReg="false" Sequence="464" DigSign="true"/>
<ROW File="icestormservice34bd.dll" Component_="icestormservice34bd.dll" FileName="icesto~6.dll|icestormservice34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icestormservice34bd.dll" SelfReg="false" Sequence="379" DigSign="true"/>
<ROW File="icestormservice34bd.dll_1" Component_="icestormservice34bd.dll_1" FileName="icesto~6.dll|icestormservice34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icestormservice34bd.dll" SelfReg="false" Sequence="503" DigSign="true"/>
<ROW File="icestormservice34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icesto~3.pdb|icestormservice34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icestormservice34bd.pdb" SelfReg="false" Sequence="378"/>
<ROW File="icestormservice34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icesto~3.pdb|icestormservice34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icestormservice34bd.pdb" SelfReg="false" Sequence="502"/>
- <ROW File="icestormserviced.lib" Component_="Ice.jar" FileName="icesto~5.lib|icestormserviced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icestormserviced.lib" SelfReg="false" Sequence="548"/>
- <ROW File="icestormserviced.lib_1" Component_="freezed.lib" FileName="icesto~3.lib|icestormserviced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icestormserviced.lib" SelfReg="false" Sequence="560"/>
- <ROW File="icestormsqldb34b.dll" Component_="icestormsqldb34b.dll" FileName="icesto~8.dll|icestormsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icestormsqldb34b.dll" SelfReg="false" Sequence="1079" DigSign="true"/>
- <ROW File="icestormsqldb34b.dll_1" Component_="icestormsqldb34b.dll_1" FileName="icesto~8.dll|icestormsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icestormsqldb34b.dll" SelfReg="false" Sequence="1085" DigSign="true"/>
- <ROW File="icestormsqldb34bd.dll" Component_="icestormsqldb34bd.dll" FileName="icesto~7.dll|icestormsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icestormsqldb34bd.dll" SelfReg="false" Sequence="1074" DigSign="true"/>
- <ROW File="icestormsqldb34bd.dll_1" Component_="icestormsqldb34bd.dll_1" FileName="icesto~7.dll|icestormsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icestormsqldb34bd.dll" SelfReg="false" Sequence="1080" DigSign="true"/>
- <ROW File="icestormsqldb34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icesto~4.pdb|icestormsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icestormsqldb34bd.pdb" SelfReg="false" Sequence="1077"/>
- <ROW File="icestormsqldb34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icesto~4.pdb|icestormsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icestormsqldb34bd.pdb" SelfReg="false" Sequence="1083"/>
- <ROW File="iceutil.lib" Component_="Ice.jar" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\iceutil.lib" SelfReg="false" Sequence="536"/>
- <ROW File="iceutil.lib_1" Component_="freezed.lib" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\iceutil.lib" SelfReg="false" Sequence="574"/>
- <ROW File="iceutil.lib_2" Component_="freezed.lib_1" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\iceutil.lib" SelfReg="false" Sequence="593"/>
- <ROW File="iceutil.lib_3" Component_="sliced.lib" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\iceutil.lib" SelfReg="false" Sequence="1092"/>
+ <ROW File="icestormserviced.lib" Component_="Ice.jar" FileName="icesto~5.lib|icestormserviced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icestormserviced.lib" SelfReg="false" Sequence="536"/>
+ <ROW File="icestormserviced.lib_1" Component_="freezed.lib" FileName="icesto~3.lib|icestormserviced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icestormserviced.lib" SelfReg="false" Sequence="548"/>
+ <ROW File="icestormsqldb34b.dll" Component_="icestormsqldb34b.dll" FileName="icesto~8.dll|icestormsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icestormsqldb34b.dll" SelfReg="false" Sequence="1067" DigSign="true"/>
+ <ROW File="icestormsqldb34b.dll_1" Component_="icestormsqldb34b.dll_1" FileName="icesto~8.dll|icestormsqldb34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icestormsqldb34b.dll" SelfReg="false" Sequence="1073" DigSign="true"/>
+ <ROW File="icestormsqldb34bd.dll" Component_="icestormsqldb34bd.dll" FileName="icesto~7.dll|icestormsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icestormsqldb34bd.dll" SelfReg="false" Sequence="1062" DigSign="true"/>
+ <ROW File="icestormsqldb34bd.dll_1" Component_="icestormsqldb34bd.dll_1" FileName="icesto~7.dll|icestormsqldb34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icestormsqldb34bd.dll" SelfReg="false" Sequence="1068" DigSign="true"/>
+ <ROW File="icestormsqldb34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icesto~4.pdb|icestormsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icestormsqldb34bd.pdb" SelfReg="false" Sequence="1065"/>
+ <ROW File="icestormsqldb34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icesto~4.pdb|icestormsqldb34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icestormsqldb34bd.pdb" SelfReg="false" Sequence="1071"/>
+ <ROW File="iceutil.lib" Component_="Ice.jar" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\iceutil.lib" SelfReg="false" Sequence="524"/>
+ <ROW File="iceutil.lib_1" Component_="freezed.lib" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\iceutil.lib" SelfReg="false" Sequence="562"/>
+ <ROW File="iceutil.lib_2" Component_="freezed.lib_1" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\iceutil.lib" SelfReg="false" Sequence="581"/>
+ <ROW File="iceutil.lib_3" Component_="sliced.lib" FileName="iceutil.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\iceutil.lib" SelfReg="false" Sequence="1080"/>
<ROW File="iceutil34b.dll" Component_="iceutil34b.dll" FileName="iceuti~1.dll|iceutil34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\iceutil34b.dll" SelfReg="false" Sequence="360" DigSign="true"/>
<ROW File="iceutil34b.dll_1" Component_="iceutil34b.dll_1" FileName="iceuti~1.dll|iceutil34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\iceutil34b.dll" SelfReg="false" Sequence="419" DigSign="true"/>
<ROW File="iceutil34b.dll_2" Component_="iceutil34b.dll_2" FileName="iceuti~1.dll|iceutil34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\iceutil34b.dll" SelfReg="false" Sequence="465" DigSign="true"/>
- <ROW File="iceutil34b_vc6.dll" Component_="iceutil34b_vc6.dll" FileName="iceuti~3.dll|iceutil34b_vc6.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\iceutil34b_vc6.dll" SelfReg="false" Sequence="512" DigSign="true"/>
- <ROW File="iceutil34b_vc6d.dll" Component_="iceutil34b_vc6d.dll" FileName="iceuti~4.dll|iceutil34b_vc6d.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\iceutil34b_vc6d.dll" SelfReg="false" Sequence="519" DigSign="true"/>
- <ROW File="iceutil34b_vc6d.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="iceuti~2.pdb|iceutil34b_vc6d.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\iceutil34b_vc6d.pdb" SelfReg="false" Sequence="518"/>
<ROW File="iceutil34bd.dll" Component_="iceutil34bd.dll" FileName="iceuti~2.dll|iceutil34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\iceutil34bd.dll" SelfReg="false" Sequence="381" DigSign="true"/>
<ROW File="iceutil34bd.dll_1" Component_="iceutil34bd.dll_1" FileName="iceuti~2.dll|iceutil34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\iceutil34bd.dll" SelfReg="false" Sequence="436" DigSign="true"/>
<ROW File="iceutil34bd.dll_2" Component_="iceutil34bd.dll_2" FileName="iceuti~2.dll|iceutil34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\iceutil34bd.dll" SelfReg="false" Sequence="505" DigSign="true"/>
<ROW File="iceutil34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="iceuti~1.pdb|iceutil34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\iceutil34bd.pdb" SelfReg="false" Sequence="380"/>
<ROW File="iceutil34bd.pdb_1" Component_="freeze34bd.pdb" FileName="iceuti~1.pdb|iceutil34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\iceutil34bd.pdb" SelfReg="false" Sequence="504"/>
<ROW File="iceutil34bd.tds" Component_="icexml34bd.tds" FileName="iceuti~1.tds|iceutil34bd.tds" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\iceutil34bd.tds" SelfReg="false" Sequence="437"/>
- <ROW File="iceutild.lib" Component_="Ice.jar" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\iceutild.lib" SelfReg="false" Sequence="549"/>
- <ROW File="iceutild.lib_1" Component_="freezed.lib" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\iceutild.lib" SelfReg="false" Sequence="561"/>
- <ROW File="iceutild.lib_2" Component_="freezed.lib_1" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\iceutild.lib" SelfReg="false" Sequence="584"/>
- <ROW File="iceutild.lib_3" Component_="sliced.lib" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\iceutild.lib" SelfReg="false" Sequence="1089"/>
- <ROW File="icexml.lib" Component_="Ice.jar" FileName="icexml.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icexml.lib" SelfReg="false" Sequence="537"/>
- <ROW File="icexml.lib_1" Component_="freezed.lib" FileName="icexml.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icexml.lib" SelfReg="false" Sequence="575"/>
- <ROW File="icexml.lib_2" Component_="freezed.lib_1" FileName="icexml.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icexml.lib" SelfReg="false" Sequence="594"/>
+ <ROW File="iceutild.lib" Component_="Ice.jar" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\iceutild.lib" SelfReg="false" Sequence="537"/>
+ <ROW File="iceutild.lib_1" Component_="freezed.lib" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\iceutild.lib" SelfReg="false" Sequence="549"/>
+ <ROW File="iceutild.lib_2" Component_="freezed.lib_1" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\iceutild.lib" SelfReg="false" Sequence="572"/>
+ <ROW File="iceutild.lib_3" Component_="sliced.lib" FileName="iceutild.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\iceutild.lib" SelfReg="false" Sequence="1077"/>
+ <ROW File="iceutilvc60_34b.dll" Component_="iceutilvc60_34b.dll" FileName="iceuti~6.dll|iceutilvc60_34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\iceutilvc60_34b.dll" SelfReg="false" Sequence="1174"/>
+ <ROW File="iceutilvc60_34bd.dll" Component_="iceutilvc60_34bd.dll" FileName="iceuti~5.dll|iceutilvc60_34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\iceutilvc60_34bd.dll" SelfReg="false" Sequence="1168"/>
+ <ROW File="iceutilvc60_34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="iceuti~3.pdb|iceutilvc60_34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\iceutilvc60_34bd.pdb" SelfReg="false" Sequence="1167"/>
+ <ROW File="icevc60_34b.dll" Component_="icevc60_34b.dll" FileName="icevc6~2.dll|icevc60_34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\icevc60_34b.dll" SelfReg="false" Sequence="1175"/>
+ <ROW File="icevc60_34bd.dll" Component_="icevc60_34bd.dll" FileName="icevc6~1.dll|icevc60_34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\icevc60_34bd.dll" SelfReg="false" Sequence="1170"/>
+ <ROW File="icevc60_34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icevc6~1.pdb|icevc60_34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\icevc60_34bd.pdb" SelfReg="false" Sequence="1169"/>
+ <ROW File="icexml.lib" Component_="Ice.jar" FileName="icexml.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\icexml.lib" SelfReg="false" Sequence="525"/>
+ <ROW File="icexml.lib_1" Component_="freezed.lib" FileName="icexml.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\icexml.lib" SelfReg="false" Sequence="563"/>
+ <ROW File="icexml.lib_2" Component_="freezed.lib_1" FileName="icexml.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\lib\icexml.lib" SelfReg="false" Sequence="582"/>
<ROW File="icexml34b.dll" Component_="icexml34b.dll" FileName="icexml~1.dll|icexml34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\icexml34b.dll" SelfReg="false" Sequence="361" DigSign="true"/>
<ROW File="icexml34b.dll_1" Component_="icexml34b.dll_1" FileName="icexml~1.dll|icexml34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Release\cpp\bin\icexml34b.dll" SelfReg="false" Sequence="420" DigSign="true"/>
<ROW File="icexml34b.dll_2" Component_="icexml34b.dll_2" FileName="icexml~1.dll|icexml34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\icexml34b.dll" SelfReg="false" Sequence="466" DigSign="true"/>
@@ -1192,59 +1192,59 @@
<ROW File="icexml34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="icexml~1.pdb|icexml34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\icexml34bd.pdb" SelfReg="false" Sequence="382"/>
<ROW File="icexml34bd.pdb_1" Component_="freeze34bd.pdb" FileName="icexml~1.pdb|icexml34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\icexml34bd.pdb" SelfReg="false" Sequence="506"/>
<ROW File="icexml34bd.tds" Component_="icexml34bd.tds" FileName="icexml~1.tds|icexml34bd.tds" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\bin\icexml34bd.tds" SelfReg="false" Sequence="421"/>
- <ROW File="icexmld.lib" Component_="Ice.jar" FileName="icexmld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icexmld.lib" SelfReg="false" Sequence="550"/>
- <ROW File="icexmld.lib_1" Component_="freezed.lib" FileName="icexmld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icexmld.lib" SelfReg="false" Sequence="562"/>
- <ROW File="icexmld.lib_2" Component_="freezed.lib_1" FileName="icexmld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icexmld.lib" SelfReg="false" Sequence="585"/>
- <ROW File="init_.py" Component_="init_.py" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceBox\__init__.py" SelfReg="false" Sequence="653"/>
- <ROW File="init_.py_1" Component_="init_.py_1" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid\__init__.py" SelfReg="false" Sequence="654"/>
- <ROW File="init_.py_2" Component_="init_.py_2" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePatch2\__init__.py" SelfReg="false" Sequence="655"/>
- <ROW File="init_.py_3" Component_="init_.py_3" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceStorm\__init__.py" SelfReg="false" Sequence="656"/>
- <ROW File="iomanip" Component_="wctype.h" FileName="iomanip" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iomanip" SelfReg="false" Sequence="690"/>
- <ROW File="iomanip.h" Component_="wctype.h" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iomanip.h" SelfReg="false" Sequence="691"/>
- <ROW File="iomanip.h_1" Component_="vector.h" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iomanip.h" SelfReg="false" Sequence="774"/>
- <ROW File="iomanip.h_2" Component_="strstream.h" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\iomanip.h" SelfReg="false" Sequence="1025"/>
- <ROW File="iomanip.h_3" Component_="strstream.h_1" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\iomanip.h" SelfReg="false" Sequence="1062"/>
- <ROW File="iomanip_1" Component_="strstream" FileName="iomanip" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\iomanip" SelfReg="false" Sequence="998"/>
- <ROW File="iomanip_2" Component_="strstream_1" FileName="iomanip" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\iomanip" SelfReg="false" Sequence="1011"/>
- <ROW File="ios" Component_="wctype.h" FileName="ios" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ios" SelfReg="false" Sequence="692"/>
- <ROW File="ios.c" Component_="type_traits.h" FileName="_ios.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ios.c" SelfReg="false" Sequence="909"/>
- <ROW File="ios.h" Component_="wctype.h" FileName="ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ios.h" SelfReg="false" Sequence="693"/>
- <ROW File="ios.h_1" Component_="vector.h" FileName="ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\ios.h" SelfReg="false" Sequence="775"/>
- <ROW File="ios.h_2" Component_="type_traits.h" FileName="_ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ios.h" SelfReg="false" Sequence="910"/>
- <ROW File="ios.h_3" Component_="strstream.h" FileName="ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\ios.h" SelfReg="false" Sequence="1026"/>
- <ROW File="ios_1" Component_="strstream" FileName="ios" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\ios" SelfReg="false" Sequence="999"/>
- <ROW File="ios_2" Component_="strstream_1" FileName="ios" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\ios" SelfReg="false" Sequence="1012"/>
- <ROW File="ios_base.h" Component_="type_traits.h" FileName="_ios_b~1.h|_ios_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ios_base.h" SelfReg="false" Sequence="911"/>
- <ROW File="iosfwd" Component_="wctype.h" FileName="iosfwd" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iosfwd" SelfReg="false" Sequence="694"/>
- <ROW File="iosfwd.h" Component_="vector.h" FileName="iosfwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iosfwd.h" SelfReg="false" Sequence="776"/>
- <ROW File="iosfwd.h_1" Component_="type_traits.h" FileName="_iosfwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iosfwd.h" SelfReg="false" Sequence="912"/>
- <ROW File="iosfwd.h_2" Component_="strstream.h" FileName="iosfwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\iosfwd.h" SelfReg="false" Sequence="1027"/>
- <ROW File="iosfwd_1" Component_="strstream" FileName="iosfwd" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\iosfwd" SelfReg="false" Sequence="1000"/>
- <ROW File="iosfwd_2" Component_="strstream_1" FileName="iosfwd" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\iosfwd" SelfReg="false" Sequence="1013"/>
- <ROW File="iostream" Component_="wctype.h" FileName="iostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iostream" SelfReg="false" Sequence="695"/>
- <ROW File="iostream.h" Component_="wctype.h" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iostream.h" SelfReg="false" Sequence="696"/>
- <ROW File="iostream.h_1" Component_="vector.h" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iostream.h" SelfReg="false" Sequence="777"/>
- <ROW File="iostream.h_2" Component_="strstream.h" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\iostream.h" SelfReg="false" Sequence="1028"/>
- <ROW File="iostream.h_3" Component_="strstream.h_1" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\iostream.h" SelfReg="false" Sequence="1063"/>
- <ROW File="iostream.h_4" Component_="strstream.h_2" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\iostream.h" SelfReg="false" Sequence="1068"/>
- <ROW File="iostream_1" Component_="strstream" FileName="iostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\iostream" SelfReg="false" Sequence="1001"/>
- <ROW File="iostream_2" Component_="strstream_1" FileName="iostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\iostream" SelfReg="false" Sequence="1014"/>
- <ROW File="istream" Component_="wctype.h" FileName="istream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\istream" SelfReg="false" Sequence="697"/>
- <ROW File="istream.c" Component_="type_traits.h" FileName="_istream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_istream.c" SelfReg="false" Sequence="913"/>
- <ROW File="istream.h" Component_="wctype.h" FileName="istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\istream.h" SelfReg="false" Sequence="698"/>
- <ROW File="istream.h_1" Component_="vector.h" FileName="istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\istream.h" SelfReg="false" Sequence="778"/>
- <ROW File="istream.h_2" Component_="type_traits.h" FileName="_istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_istream.h" SelfReg="false" Sequence="914"/>
- <ROW File="istream.h_3" Component_="strstream.h" FileName="istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\istream.h" SelfReg="false" Sequence="1029"/>
- <ROW File="istream_1" Component_="strstream" FileName="istream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\istream" SelfReg="false" Sequence="1002"/>
- <ROW File="istream_2" Component_="strstream_1" FileName="istream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\istream" SelfReg="false" Sequence="1015"/>
- <ROW File="istreambuf_iterator.h" Component_="type_traits.h" FileName="_istre~1.h|_istreambuf_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_istreambuf_iterator.h" SelfReg="false" Sequence="915"/>
- <ROW File="iterator" Component_="wctype.h" FileName="iterator" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iterator" SelfReg="false" Sequence="699"/>
- <ROW File="iterator.h_1" Component_="vector.h" FileName="iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iterator.h" SelfReg="false" Sequence="779"/>
- <ROW File="iterator.h_2" Component_="vector.h_1" FileName="iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\iterator.h" SelfReg="false" Sequence="852"/>
- <ROW File="iterator.h_3" Component_="type_traits.h" FileName="_itera~1.h|_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iterator.h" SelfReg="false" Sequence="916"/>
- <ROW File="iterator.h_4" Component_="vector.h_2" FileName="_itera~1.h|_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_iterator.h" SelfReg="false" Sequence="1044"/>
- <ROW File="iterator_base.h" Component_="type_traits.h" FileName="_itera~2.h|_iterator_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iterator_base.h" SelfReg="false" Sequence="917"/>
- <ROW File="iterator_old.h" Component_="type_traits.h" FileName="_itera~3.h|_iterator_old.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iterator_old.h" SelfReg="false" Sequence="918"/>
+ <ROW File="icexmld.lib" Component_="Ice.jar" FileName="icexmld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\icexmld.lib" SelfReg="false" Sequence="538"/>
+ <ROW File="icexmld.lib_1" Component_="freezed.lib" FileName="icexmld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\icexmld.lib" SelfReg="false" Sequence="550"/>
+ <ROW File="icexmld.lib_2" Component_="freezed.lib_1" FileName="icexmld.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;BCC10\Debug\cpp\lib\icexmld.lib" SelfReg="false" Sequence="573"/>
+ <ROW File="init_.py" Component_="init_.py" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceBox\__init__.py" SelfReg="false" Sequence="641"/>
+ <ROW File="init_.py_1" Component_="init_.py_1" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceGrid\__init__.py" SelfReg="false" Sequence="642"/>
+ <ROW File="init_.py_2" Component_="init_.py_2" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IcePatch2\__init__.py" SelfReg="false" Sequence="643"/>
+ <ROW File="init_.py_3" Component_="init_.py_3" FileName="__init__.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\py\python\IceStorm\__init__.py" SelfReg="false" Sequence="644"/>
+ <ROW File="iomanip" Component_="wctype.h" FileName="iomanip" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iomanip" SelfReg="false" Sequence="678"/>
+ <ROW File="iomanip.h" Component_="wctype.h" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iomanip.h" SelfReg="false" Sequence="679"/>
+ <ROW File="iomanip.h_1" Component_="vector.h" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iomanip.h" SelfReg="false" Sequence="762"/>
+ <ROW File="iomanip.h_2" Component_="strstream.h" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\iomanip.h" SelfReg="false" Sequence="1013"/>
+ <ROW File="iomanip.h_3" Component_="strstream.h_1" FileName="iomanip.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\iomanip.h" SelfReg="false" Sequence="1050"/>
+ <ROW File="iomanip_1" Component_="strstream" FileName="iomanip" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\iomanip" SelfReg="false" Sequence="986"/>
+ <ROW File="iomanip_2" Component_="strstream_1" FileName="iomanip" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\iomanip" SelfReg="false" Sequence="999"/>
+ <ROW File="ios" Component_="wctype.h" FileName="ios" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ios" SelfReg="false" Sequence="680"/>
+ <ROW File="ios.c" Component_="type_traits.h" FileName="_ios.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ios.c" SelfReg="false" Sequence="897"/>
+ <ROW File="ios.h" Component_="wctype.h" FileName="ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ios.h" SelfReg="false" Sequence="681"/>
+ <ROW File="ios.h_1" Component_="vector.h" FileName="ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\ios.h" SelfReg="false" Sequence="763"/>
+ <ROW File="ios.h_2" Component_="type_traits.h" FileName="_ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ios.h" SelfReg="false" Sequence="898"/>
+ <ROW File="ios.h_3" Component_="strstream.h" FileName="ios.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\ios.h" SelfReg="false" Sequence="1014"/>
+ <ROW File="ios_1" Component_="strstream" FileName="ios" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\ios" SelfReg="false" Sequence="987"/>
+ <ROW File="ios_2" Component_="strstream_1" FileName="ios" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\ios" SelfReg="false" Sequence="1000"/>
+ <ROW File="ios_base.h" Component_="type_traits.h" FileName="_ios_b~1.h|_ios_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ios_base.h" SelfReg="false" Sequence="899"/>
+ <ROW File="iosfwd" Component_="wctype.h" FileName="iosfwd" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iosfwd" SelfReg="false" Sequence="682"/>
+ <ROW File="iosfwd.h" Component_="vector.h" FileName="iosfwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iosfwd.h" SelfReg="false" Sequence="764"/>
+ <ROW File="iosfwd.h_1" Component_="type_traits.h" FileName="_iosfwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iosfwd.h" SelfReg="false" Sequence="900"/>
+ <ROW File="iosfwd.h_2" Component_="strstream.h" FileName="iosfwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\iosfwd.h" SelfReg="false" Sequence="1015"/>
+ <ROW File="iosfwd_1" Component_="strstream" FileName="iosfwd" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\iosfwd" SelfReg="false" Sequence="988"/>
+ <ROW File="iosfwd_2" Component_="strstream_1" FileName="iosfwd" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\iosfwd" SelfReg="false" Sequence="1001"/>
+ <ROW File="iostream" Component_="wctype.h" FileName="iostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iostream" SelfReg="false" Sequence="683"/>
+ <ROW File="iostream.h" Component_="wctype.h" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iostream.h" SelfReg="false" Sequence="684"/>
+ <ROW File="iostream.h_1" Component_="vector.h" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iostream.h" SelfReg="false" Sequence="765"/>
+ <ROW File="iostream.h_2" Component_="strstream.h" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\iostream.h" SelfReg="false" Sequence="1016"/>
+ <ROW File="iostream.h_3" Component_="strstream.h_1" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\iostream.h" SelfReg="false" Sequence="1051"/>
+ <ROW File="iostream.h_4" Component_="strstream.h_2" FileName="iostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\iostream.h" SelfReg="false" Sequence="1056"/>
+ <ROW File="iostream_1" Component_="strstream" FileName="iostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\iostream" SelfReg="false" Sequence="989"/>
+ <ROW File="iostream_2" Component_="strstream_1" FileName="iostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\iostream" SelfReg="false" Sequence="1002"/>
+ <ROW File="istream" Component_="wctype.h" FileName="istream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\istream" SelfReg="false" Sequence="685"/>
+ <ROW File="istream.c" Component_="type_traits.h" FileName="_istream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_istream.c" SelfReg="false" Sequence="901"/>
+ <ROW File="istream.h" Component_="wctype.h" FileName="istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\istream.h" SelfReg="false" Sequence="686"/>
+ <ROW File="istream.h_1" Component_="vector.h" FileName="istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\istream.h" SelfReg="false" Sequence="766"/>
+ <ROW File="istream.h_2" Component_="type_traits.h" FileName="_istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_istream.h" SelfReg="false" Sequence="902"/>
+ <ROW File="istream.h_3" Component_="strstream.h" FileName="istream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\istream.h" SelfReg="false" Sequence="1017"/>
+ <ROW File="istream_1" Component_="strstream" FileName="istream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\istream" SelfReg="false" Sequence="990"/>
+ <ROW File="istream_2" Component_="strstream_1" FileName="istream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\istream" SelfReg="false" Sequence="1003"/>
+ <ROW File="istreambuf_iterator.h" Component_="type_traits.h" FileName="_istre~1.h|_istreambuf_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_istreambuf_iterator.h" SelfReg="false" Sequence="903"/>
+ <ROW File="iterator" Component_="wctype.h" FileName="iterator" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\iterator" SelfReg="false" Sequence="687"/>
+ <ROW File="iterator.h_1" Component_="vector.h" FileName="iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\iterator.h" SelfReg="false" Sequence="767"/>
+ <ROW File="iterator.h_2" Component_="vector.h_1" FileName="iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\iterator.h" SelfReg="false" Sequence="840"/>
+ <ROW File="iterator.h_3" Component_="type_traits.h" FileName="_itera~1.h|_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iterator.h" SelfReg="false" Sequence="904"/>
+ <ROW File="iterator.h_4" Component_="vector.h_2" FileName="_itera~1.h|_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_iterator.h" SelfReg="false" Sequence="1032"/>
+ <ROW File="iterator_base.h" Component_="type_traits.h" FileName="_itera~2.h|_iterator_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iterator_base.h" SelfReg="false" Sequence="905"/>
+ <ROW File="iterator_old.h" Component_="type_traits.h" FileName="_itera~3.h|_iterator_old.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_iterator_old.h" SelfReg="false" Sequence="906"/>
<ROW File="libdb48.dll" Component_="libdb48.dll" FileName="libdb48.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\libdb48.dll" SelfReg="false" Sequence="20" DigSign="true"/>
<ROW File="libdb48.dll_1" Component_="libdb48.dll_1" FileName="libdb48.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\bcc10\libdb48.dll" SelfReg="false" Sequence="33" DigSign="true"/>
<ROW File="libdb48.dll_2" Component_="libdb48.dll_2" FileName="libdb48.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\libdb48.dll" SelfReg="false" Sequence="48" DigSign="true"/>
@@ -1256,121 +1256,121 @@
<ROW File="libeay32_vc6.dll" Component_="libeay32_vc6.dll" FileName="libeay~1.dll|libeay32_vc6.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\libeay32_vc6.dll" SelfReg="false" Sequence="24" DigSign="true"/>
<ROW File="libexpat.dll" Component_="libexpat.dll" FileName="libexpat.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\libexpat.dll" SelfReg="false" Sequence="25" DigSign="true"/>
<ROW File="libexpat.dll_1" Component_="libexpat.dll_1" FileName="libexpat.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\libexpat.dll" SelfReg="false" Sequence="51" DigSign="true"/>
- <ROW File="limits" Component_="wctype.h" FileName="limits" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\limits" SelfReg="false" Sequence="700"/>
- <ROW File="limits.c" Component_="type_traits.h" FileName="_limits.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_limits.c" SelfReg="false" Sequence="919"/>
- <ROW File="limits.h" Component_="vector.h" FileName="limits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\limits.h" SelfReg="false" Sequence="780"/>
- <ROW File="limits.h_1" Component_="type_traits.h" FileName="_limits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_limits.h" SelfReg="false" Sequence="920"/>
- <ROW File="list" Component_="wctype.h" FileName="list" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\list" SelfReg="false" Sequence="701"/>
- <ROW File="list.c" Component_="type_traits.h" FileName="_list.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_list.c" SelfReg="false" Sequence="921"/>
- <ROW File="list.h" Component_="vector.h" FileName="list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\list.h" SelfReg="false" Sequence="781"/>
- <ROW File="list.h_1" Component_="vector.h_1" FileName="list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\list.h" SelfReg="false" Sequence="853"/>
- <ROW File="list.h_2" Component_="type_traits.h" FileName="_list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_list.h" SelfReg="false" Sequence="922"/>
- <ROW File="list.h_3" Component_="vector.h_2" FileName="_list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_list.h" SelfReg="false" Sequence="1045"/>
- <ROW File="list.h_4" Component_="vector.h_3" FileName="_list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_list.h" SelfReg="false" Sequence="1055"/>
- <ROW File="locale" Component_="wctype.h" FileName="locale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\locale" SelfReg="false" Sequence="702"/>
- <ROW File="locale.h" Component_="wctype.h" FileName="locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\locale.h" SelfReg="false" Sequence="703"/>
- <ROW File="locale.h_1" Component_="vector.h" FileName="locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\locale.h" SelfReg="false" Sequence="782"/>
- <ROW File="locale.h_2" Component_="type_traits.h" FileName="_locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_locale.h" SelfReg="false" Sequence="923"/>
- <ROW File="locale.h_3" Component_="strstream.h" FileName="locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\locale.h" SelfReg="false" Sequence="1030"/>
- <ROW File="locale_1" Component_="strstream" FileName="locale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\locale" SelfReg="false" Sequence="1003"/>
- <ROW File="locale_2" Component_="strstream_1" FileName="locale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\locale" SelfReg="false" Sequence="1016"/>
- <ROW File="make_bc50.sh" Component_="vector.h" FileName="make_b~1.sh|make_bc50.sh" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\make_bc50.sh" SelfReg="false" Sequence="783"/>
- <ROW File="map" Component_="wctype.h" FileName="map" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\map" SelfReg="false" Sequence="704"/>
- <ROW File="map.h_1" Component_="vector.h" FileName="map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\map.h" SelfReg="false" Sequence="784"/>
- <ROW File="map.h_2" Component_="vector.h_1" FileName="map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\map.h" SelfReg="false" Sequence="854"/>
- <ROW File="map.h_3" Component_="type_traits.h" FileName="_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_map.h" SelfReg="false" Sequence="924"/>
- <ROW File="map.h_4" Component_="vector.h_3" FileName="_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_map.h" SelfReg="false" Sequence="1056"/>
- <ROW File="math.h" Component_="wctype.h" FileName="math.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\math.h" SelfReg="false" Sequence="705"/>
- <ROW File="mem.h" Component_="wctype.h" FileName="mem.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\mem.h" SelfReg="false" Sequence="706"/>
- <ROW File="memory" Component_="wctype.h" FileName="memory" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\memory" SelfReg="false" Sequence="707"/>
- <ROW File="memory.h" Component_="vector.h" FileName="memory.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\memory.h" SelfReg="false" Sequence="785"/>
- <ROW File="messages_facets.h" Component_="type_traits.h" FileName="_messa~1.h|_messages_facets.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_messages_facets.h" SelfReg="false" Sequence="925"/>
- <ROW File="mmap.h" Component_="vector.h_3" FileName="_mmap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_mmap.h" SelfReg="false" Sequence="1057"/>
- <ROW File="mmemory.h" Component_="wctype.h" FileName="mmemory.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\mmemory.h" SelfReg="false" Sequence="708"/>
- <ROW File="monetary.c" Component_="type_traits.h" FileName="_monet~1.c|_monetary.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_monetary.c" SelfReg="false" Sequence="926"/>
- <ROW File="monetary.h" Component_="type_traits.h" FileName="_monet~1.h|_monetary.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_monetary.h" SelfReg="false" Sequence="927"/>
- <ROW File="msl_string.h" Component_="type_traits.h" FileName="msl_st~1.h|msl_string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\msl_string.h" SelfReg="false" Sequence="993"/>
- <ROW File="msvc_warnings_off.h" Component_="vc_select_lib.h" FileName="_msvc_~1.h|_msvc_warnings_off.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\_msvc_warnings_off.h" SelfReg="false" Sequence="807"/>
+ <ROW File="limits" Component_="wctype.h" FileName="limits" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\limits" SelfReg="false" Sequence="688"/>
+ <ROW File="limits.c" Component_="type_traits.h" FileName="_limits.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_limits.c" SelfReg="false" Sequence="907"/>
+ <ROW File="limits.h" Component_="vector.h" FileName="limits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\limits.h" SelfReg="false" Sequence="768"/>
+ <ROW File="limits.h_1" Component_="type_traits.h" FileName="_limits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_limits.h" SelfReg="false" Sequence="908"/>
+ <ROW File="list" Component_="wctype.h" FileName="list" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\list" SelfReg="false" Sequence="689"/>
+ <ROW File="list.c" Component_="type_traits.h" FileName="_list.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_list.c" SelfReg="false" Sequence="909"/>
+ <ROW File="list.h" Component_="vector.h" FileName="list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\list.h" SelfReg="false" Sequence="769"/>
+ <ROW File="list.h_1" Component_="vector.h_1" FileName="list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\list.h" SelfReg="false" Sequence="841"/>
+ <ROW File="list.h_2" Component_="type_traits.h" FileName="_list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_list.h" SelfReg="false" Sequence="910"/>
+ <ROW File="list.h_3" Component_="vector.h_2" FileName="_list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_list.h" SelfReg="false" Sequence="1033"/>
+ <ROW File="list.h_4" Component_="vector.h_3" FileName="_list.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_list.h" SelfReg="false" Sequence="1043"/>
+ <ROW File="locale" Component_="wctype.h" FileName="locale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\locale" SelfReg="false" Sequence="690"/>
+ <ROW File="locale.h" Component_="wctype.h" FileName="locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\locale.h" SelfReg="false" Sequence="691"/>
+ <ROW File="locale.h_1" Component_="vector.h" FileName="locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\locale.h" SelfReg="false" Sequence="770"/>
+ <ROW File="locale.h_2" Component_="type_traits.h" FileName="_locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_locale.h" SelfReg="false" Sequence="911"/>
+ <ROW File="locale.h_3" Component_="strstream.h" FileName="locale.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\locale.h" SelfReg="false" Sequence="1018"/>
+ <ROW File="locale_1" Component_="strstream" FileName="locale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\locale" SelfReg="false" Sequence="991"/>
+ <ROW File="locale_2" Component_="strstream_1" FileName="locale" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\locale" SelfReg="false" Sequence="1004"/>
+ <ROW File="make_bc50.sh" Component_="vector.h" FileName="make_b~1.sh|make_bc50.sh" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\make_bc50.sh" SelfReg="false" Sequence="771"/>
+ <ROW File="map" Component_="wctype.h" FileName="map" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\map" SelfReg="false" Sequence="692"/>
+ <ROW File="map.h_1" Component_="vector.h" FileName="map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\map.h" SelfReg="false" Sequence="772"/>
+ <ROW File="map.h_2" Component_="vector.h_1" FileName="map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\map.h" SelfReg="false" Sequence="842"/>
+ <ROW File="map.h_3" Component_="type_traits.h" FileName="_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_map.h" SelfReg="false" Sequence="912"/>
+ <ROW File="map.h_4" Component_="vector.h_3" FileName="_map.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_map.h" SelfReg="false" Sequence="1044"/>
+ <ROW File="math.h" Component_="wctype.h" FileName="math.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\math.h" SelfReg="false" Sequence="693"/>
+ <ROW File="mem.h" Component_="wctype.h" FileName="mem.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\mem.h" SelfReg="false" Sequence="694"/>
+ <ROW File="memory" Component_="wctype.h" FileName="memory" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\memory" SelfReg="false" Sequence="695"/>
+ <ROW File="memory.h" Component_="vector.h" FileName="memory.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\memory.h" SelfReg="false" Sequence="773"/>
+ <ROW File="messages_facets.h" Component_="type_traits.h" FileName="_messa~1.h|_messages_facets.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_messages_facets.h" SelfReg="false" Sequence="913"/>
+ <ROW File="mmap.h" Component_="vector.h_3" FileName="_mmap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_mmap.h" SelfReg="false" Sequence="1045"/>
+ <ROW File="mmemory.h" Component_="wctype.h" FileName="mmemory.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\mmemory.h" SelfReg="false" Sequence="696"/>
+ <ROW File="monetary.c" Component_="type_traits.h" FileName="_monet~1.c|_monetary.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_monetary.c" SelfReg="false" Sequence="914"/>
+ <ROW File="monetary.h" Component_="type_traits.h" FileName="_monet~1.h|_monetary.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_monetary.h" SelfReg="false" Sequence="915"/>
+ <ROW File="msl_string.h" Component_="type_traits.h" FileName="msl_st~1.h|msl_string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\msl_string.h" SelfReg="false" Sequence="981"/>
+ <ROW File="msvc_warnings_off.h" Component_="vc_select_lib.h" FileName="_msvc_~1.h|_msvc_warnings_off.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\_msvc_warnings_off.h" SelfReg="false" Sequence="795"/>
<ROW File="msvcp60.dll" Component_="msvcp60.dll" FileName="msvcp60.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\msvcp60.dll" SelfReg="false" Sequence="26" DigSign="true"/>
<ROW File="msvcrt.dll" Component_="msvcrt.dll" FileName="msvcrt.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\msvcrt.dll" SelfReg="false" Sequence="27" DigSign="true"/>
- <ROW File="multimap.h" Component_="vector.h_1" FileName="multimap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\multimap.h" SelfReg="false" Sequence="855"/>
- <ROW File="multiset.h" Component_="vector.h_1" FileName="multiset.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\multiset.h" SelfReg="false" Sequence="856"/>
- <ROW File="new" Component_="wctype.h" FileName="new" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\new" SelfReg="false" Sequence="709"/>
- <ROW File="new.h" Component_="wctype.h" FileName="new.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\new.h" SelfReg="false" Sequence="710"/>
- <ROW File="new.h_1" Component_="type_traits.h" FileName="_new.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_new.h" SelfReg="false" Sequence="928"/>
- <ROW File="newslice.ice" Component_="slice.vsdir" FileName="newslice.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ice" SelfReg="false" Sequence="1098"/>
- <ROW File="newslice.ice_1" Component_="slice.vsdir_1" FileName="newslice.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ice" SelfReg="false" Sequence="1101"/>
- <ROW File="newslice.ico" Component_="newslice.ico" FileName="newslice.ico" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\icon\newslice.ico" SelfReg="false" Sequence="1094"/>
- <ROW File="newslice.ico_1" Component_="slice.vsdir" FileName="newslice.ico" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ico" SelfReg="false" Sequence="1097"/>
- <ROW File="newslice.ico_2" Component_="slice.vsdir_1" FileName="newslice.ico" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ico" SelfReg="false" Sequence="1100"/>
- <ROW File="null_stream.h" Component_="type_traits.h" FileName="_null_~1.h|_null_stream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_null_stream.h" SelfReg="false" Sequence="929"/>
- <ROW File="num_get.c" Component_="type_traits.h" FileName="_num_get.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_get.c" SelfReg="false" Sequence="930"/>
- <ROW File="num_get.h" Component_="type_traits.h" FileName="_num_get.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_get.h" SelfReg="false" Sequence="931"/>
- <ROW File="num_put.c" Component_="type_traits.h" FileName="_num_put.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_put.c" SelfReg="false" Sequence="932"/>
- <ROW File="num_put.h" Component_="type_traits.h" FileName="_num_put.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_put.h" SelfReg="false" Sequence="933"/>
- <ROW File="numeric" Component_="wctype.h" FileName="numeric" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\numeric" SelfReg="false" Sequence="711"/>
- <ROW File="numeric.c" Component_="type_traits.h" FileName="_numeric.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_numeric.c" SelfReg="false" Sequence="934"/>
- <ROW File="numeric.h" Component_="vector.h" FileName="numeric.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\numeric.h" SelfReg="false" Sequence="786"/>
- <ROW File="numeric.h_1" Component_="vector.h_1" FileName="numeric.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\numeric.h" SelfReg="false" Sequence="857"/>
- <ROW File="numeric.h_2" Component_="type_traits.h" FileName="_numeric.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_numeric.h" SelfReg="false" Sequence="935"/>
- <ROW File="numpunct.h" Component_="type_traits.h" FileName="_numpu~1.h|_numpunct.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_numpunct.h" SelfReg="false" Sequence="936"/>
+ <ROW File="multimap.h" Component_="vector.h_1" FileName="multimap.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\multimap.h" SelfReg="false" Sequence="843"/>
+ <ROW File="multiset.h" Component_="vector.h_1" FileName="multiset.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\multiset.h" SelfReg="false" Sequence="844"/>
+ <ROW File="new" Component_="wctype.h" FileName="new" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\new" SelfReg="false" Sequence="697"/>
+ <ROW File="new.h" Component_="wctype.h" FileName="new.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\new.h" SelfReg="false" Sequence="698"/>
+ <ROW File="new.h_1" Component_="type_traits.h" FileName="_new.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_new.h" SelfReg="false" Sequence="916"/>
+ <ROW File="newslice.ice" Component_="slice.vsdir" FileName="newslice.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ice" SelfReg="false" Sequence="1086"/>
+ <ROW File="newslice.ice_1" Component_="slice.vsdir_1" FileName="newslice.ice" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ice" SelfReg="false" Sequence="1089"/>
+ <ROW File="newslice.ico" Component_="newslice.ico" FileName="newslice.ico" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\icon\newslice.ico" SelfReg="false" Sequence="1082"/>
+ <ROW File="newslice.ico_1" Component_="slice.vsdir" FileName="newslice.ico" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ico" SelfReg="false" Sequence="1085"/>
+ <ROW File="newslice.ico_2" Component_="slice.vsdir_1" FileName="newslice.ico" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\newslice.ico" SelfReg="false" Sequence="1088"/>
+ <ROW File="null_stream.h" Component_="type_traits.h" FileName="_null_~1.h|_null_stream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_null_stream.h" SelfReg="false" Sequence="917"/>
+ <ROW File="num_get.c" Component_="type_traits.h" FileName="_num_get.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_get.c" SelfReg="false" Sequence="918"/>
+ <ROW File="num_get.h" Component_="type_traits.h" FileName="_num_get.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_get.h" SelfReg="false" Sequence="919"/>
+ <ROW File="num_put.c" Component_="type_traits.h" FileName="_num_put.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_put.c" SelfReg="false" Sequence="920"/>
+ <ROW File="num_put.h" Component_="type_traits.h" FileName="_num_put.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_num_put.h" SelfReg="false" Sequence="921"/>
+ <ROW File="numeric" Component_="wctype.h" FileName="numeric" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\numeric" SelfReg="false" Sequence="699"/>
+ <ROW File="numeric.c" Component_="type_traits.h" FileName="_numeric.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_numeric.c" SelfReg="false" Sequence="922"/>
+ <ROW File="numeric.h" Component_="vector.h" FileName="numeric.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\numeric.h" SelfReg="false" Sequence="774"/>
+ <ROW File="numeric.h_1" Component_="vector.h_1" FileName="numeric.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\numeric.h" SelfReg="false" Sequence="845"/>
+ <ROW File="numeric.h_2" Component_="type_traits.h" FileName="_numeric.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_numeric.h" SelfReg="false" Sequence="923"/>
+ <ROW File="numpunct.h" Component_="type_traits.h" FileName="_numpu~1.h|_numpunct.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_numpunct.h" SelfReg="false" Sequence="924"/>
<ROW File="openssl.exe" Component_="openssl.exe" FileName="openssl.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\openssl.exe" SelfReg="false" Sequence="28" DigSign="true"/>
<ROW File="openssl.exe_1" Component_="openssl.exe_1" FileName="openssl.exe" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\openssl.exe" SelfReg="false" Sequence="52" DigSign="true"/>
- <ROW File="ostream" Component_="wctype.h" FileName="ostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ostream" SelfReg="false" Sequence="712"/>
- <ROW File="ostream.c" Component_="type_traits.h" FileName="_ostream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ostream.c" SelfReg="false" Sequence="937"/>
- <ROW File="ostream.h" Component_="wctype.h" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ostream.h" SelfReg="false" Sequence="713"/>
- <ROW File="ostream.h_1" Component_="vector.h" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\ostream.h" SelfReg="false" Sequence="787"/>
- <ROW File="ostream.h_2" Component_="type_traits.h" FileName="_ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ostream.h" SelfReg="false" Sequence="938"/>
- <ROW File="ostream.h_3" Component_="strstream.h" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\ostream.h" SelfReg="false" Sequence="1031"/>
- <ROW File="ostream.h_4" Component_="strstream.h_1" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\ostream.h" SelfReg="false" Sequence="1064"/>
- <ROW File="ostream_1" Component_="strstream" FileName="ostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\ostream" SelfReg="false" Sequence="1004"/>
- <ROW File="ostream_2" Component_="strstream_1" FileName="ostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\ostream" SelfReg="false" Sequence="1017"/>
- <ROW File="ostreambuf_iterator.h" Component_="type_traits.h" FileName="_ostre~1.h|_ostreambuf_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ostreambuf_iterator.h" SelfReg="false" Sequence="939"/>
- <ROW File="pair.h" Component_="vector.h_1" FileName="pair.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\pair.h" SelfReg="false" Sequence="858"/>
- <ROW File="pair.h_1" Component_="type_traits.h" FileName="_pair.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_pair.h" SelfReg="false" Sequence="940"/>
- <ROW File="php_ice.dll" Component_="php_ice.dll" FileName="php_ice.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\php\lib\php_ice.dll" SelfReg="false" Sequence="657" DigSign="true"/>
- <ROW File="prolog.h" Component_="vc_select_lib.h" FileName="_prolog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\_prolog.h" SelfReg="false" Sequence="808"/>
- <ROW File="prolog.h_1" Component_="type_traits.h" FileName="_prolog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_prolog.h" SelfReg="false" Sequence="941"/>
- <ROW File="pthread.h" Component_="wctype.h" FileName="pthread.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\pthread.h" SelfReg="false" Sequence="714"/>
- <ROW File="pthread_alloc" Component_="wctype.h" FileName="pthrea~1|pthread_alloc" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\pthread_alloc" SelfReg="false" Sequence="715"/>
- <ROW File="pthread_alloc.c" Component_="type_traits.h" FileName="_pthre~1.c|_pthread_alloc.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_pthread_alloc.c" SelfReg="false" Sequence="942"/>
- <ROW File="pthread_alloc.h" Component_="vector.h" FileName="pthrea~1.h|pthread_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\pthread_alloc.h" SelfReg="false" Sequence="788"/>
- <ROW File="pthread_alloc.h_1" Component_="vector.h_1" FileName="pthrea~1.h|pthread_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\pthread_alloc.h" SelfReg="false" Sequence="859"/>
- <ROW File="pthread_alloc.h_2" Component_="type_traits.h" FileName="_pthre~1.h|_pthread_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_pthread_alloc.h" SelfReg="false" Sequence="943"/>
- <ROW File="ptrs_specialize.h" Component_="type_traits.h" FileName="_ptrs_~1.h|_ptrs_specialize.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ptrs_specialize.h" SelfReg="false" Sequence="944"/>
- <ROW File="queue" Component_="wctype.h" FileName="queue" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\queue" SelfReg="false" Sequence="716"/>
- <ROW File="queue.h" Component_="vector.h" FileName="queue.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\queue.h" SelfReg="false" Sequence="789"/>
- <ROW File="queue.h_1" Component_="vector.h_1" FileName="queue.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\queue.h" SelfReg="false" Sequence="860"/>
- <ROW File="queue.h_2" Component_="type_traits.h" FileName="_queue.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_queue.h" SelfReg="false" Sequence="945"/>
- <ROW File="range_errors.h" Component_="type_traits.h" FileName="_range~1.h|_range_errors.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_range_errors.h" SelfReg="false" Sequence="946"/>
- <ROW File="raw_storage_iter.h" Component_="type_traits.h" FileName="_raw_s~1.h|_raw_storage_iter.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_raw_storage_iter.h" SelfReg="false" Sequence="947"/>
- <ROW File="relops.h" Component_="type_traits.h" FileName="_relops.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops.h" SelfReg="false" Sequence="948"/>
- <ROW File="relops_cont.h" Component_="type_traits.h" FileName="_relop~1.h|_relops_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops_cont.h" SelfReg="false" Sequence="949"/>
- <ROW File="relops_cont.h_1" Component_="vector.h_2" FileName="_relop~1.h|_relops_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_relops_cont.h" SelfReg="false" Sequence="1046"/>
- <ROW File="relops_hash_cont.h" Component_="type_traits.h" FileName="_relop~2.h|_relops_hash_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops_hash_cont.h" SelfReg="false" Sequence="950"/>
- <ROW File="relops_hash_cont.h_1" Component_="vector.h_2" FileName="_relop~2.h|_relops_hash_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_relops_hash_cont.h" SelfReg="false" Sequence="1047"/>
- <ROW File="relops_template.h" Component_="type_traits.h" FileName="_relop~3.h|_relops_template.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops_template.h" SelfReg="false" Sequence="951"/>
- <ROW File="rlocks.h" Component_="wctype.h" FileName="rlocks.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\rlocks.h" SelfReg="false" Sequence="717"/>
- <ROW File="rope" Component_="wctype.h" FileName="rope" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\rope" SelfReg="false" Sequence="718"/>
- <ROW File="rope.c" Component_="type_traits.h" FileName="_rope.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_rope.c" SelfReg="false" Sequence="952"/>
- <ROW File="rope.h" Component_="vector.h" FileName="rope.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\rope.h" SelfReg="false" Sequence="791"/>
- <ROW File="rope.h_1" Component_="vector.h_1" FileName="rope.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\rope.h" SelfReg="false" Sequence="861"/>
- <ROW File="rope.h_2" Component_="type_traits.h" FileName="_rope.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_rope.h" SelfReg="false" Sequence="953"/>
- <ROW File="set" Component_="wctype.h" FileName="set" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\set" SelfReg="false" Sequence="719"/>
- <ROW File="set.h" Component_="vector.h" FileName="set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\set.h" SelfReg="false" Sequence="792"/>
- <ROW File="set.h_1" Component_="vector.h_1" FileName="set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\set.h" SelfReg="false" Sequence="862"/>
- <ROW File="set.h_2" Component_="type_traits.h" FileName="_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_set.h" SelfReg="false" Sequence="954"/>
- <ROW File="set.h_3" Component_="vector.h_3" FileName="_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_set.h" SelfReg="false" Sequence="1058"/>
- <ROW File="setjmp.h" Component_="wctype.h" FileName="setjmp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\setjmp.h" SelfReg="false" Sequence="720"/>
- <ROW File="signal.h" Component_="wctype.h" FileName="signal.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\signal.h" SelfReg="false" Sequence="721"/>
- <ROW File="site_config.h" Component_="type_traits.h" FileName="_site_~1.h|_site_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_site_config.h" SelfReg="false" Sequence="955"/>
- <ROW File="slice.lib" Component_="Ice.jar" FileName="slice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\slice.lib" SelfReg="false" Sequence="525"/>
- <ROW File="slice.lib_1" Component_="freezed.lib" FileName="slice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\slice.lib" SelfReg="false" Sequence="576"/>
- <ROW File="slice.lib_2" Component_="sliced.lib" FileName="slice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\slice.lib" SelfReg="false" Sequence="1090"/>
- <ROW File="slice.vsdir" Component_="slice.vsdir" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\slice.vsdir" SelfReg="false" Sequence="1096"/>
- <ROW File="slice.vsdir_1" Component_="slice.vsdir_1" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\slice.vsdir" SelfReg="false" Sequence="1099"/>
- <ROW File="slice.vsdir_2" Component_="slice.vsdir_2" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\Slice\slice.vsdir" SelfReg="false" Sequence="1102"/>
- <ROW File="slice.vsdir_3" Component_="slice.vsdir_3" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\Slice\slice.vsdir" SelfReg="false" Sequence="1103"/>
+ <ROW File="ostream" Component_="wctype.h" FileName="ostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ostream" SelfReg="false" Sequence="700"/>
+ <ROW File="ostream.c" Component_="type_traits.h" FileName="_ostream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ostream.c" SelfReg="false" Sequence="925"/>
+ <ROW File="ostream.h" Component_="wctype.h" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\ostream.h" SelfReg="false" Sequence="701"/>
+ <ROW File="ostream.h_1" Component_="vector.h" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\ostream.h" SelfReg="false" Sequence="775"/>
+ <ROW File="ostream.h_2" Component_="type_traits.h" FileName="_ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ostream.h" SelfReg="false" Sequence="926"/>
+ <ROW File="ostream.h_3" Component_="strstream.h" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\ostream.h" SelfReg="false" Sequence="1019"/>
+ <ROW File="ostream.h_4" Component_="strstream.h_1" FileName="ostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\ostream.h" SelfReg="false" Sequence="1052"/>
+ <ROW File="ostream_1" Component_="strstream" FileName="ostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\ostream" SelfReg="false" Sequence="992"/>
+ <ROW File="ostream_2" Component_="strstream_1" FileName="ostream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\ostream" SelfReg="false" Sequence="1005"/>
+ <ROW File="ostreambuf_iterator.h" Component_="type_traits.h" FileName="_ostre~1.h|_ostreambuf_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ostreambuf_iterator.h" SelfReg="false" Sequence="927"/>
+ <ROW File="pair.h" Component_="vector.h_1" FileName="pair.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\pair.h" SelfReg="false" Sequence="846"/>
+ <ROW File="pair.h_1" Component_="type_traits.h" FileName="_pair.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_pair.h" SelfReg="false" Sequence="928"/>
+ <ROW File="php_ice.dll" Component_="php_ice.dll" FileName="php_ice.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\php\lib\php_ice.dll" SelfReg="false" Sequence="645" DigSign="true"/>
+ <ROW File="prolog.h" Component_="vc_select_lib.h" FileName="_prolog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\_prolog.h" SelfReg="false" Sequence="796"/>
+ <ROW File="prolog.h_1" Component_="type_traits.h" FileName="_prolog.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_prolog.h" SelfReg="false" Sequence="929"/>
+ <ROW File="pthread.h" Component_="wctype.h" FileName="pthread.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\pthread.h" SelfReg="false" Sequence="702"/>
+ <ROW File="pthread_alloc" Component_="wctype.h" FileName="pthrea~1|pthread_alloc" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\pthread_alloc" SelfReg="false" Sequence="703"/>
+ <ROW File="pthread_alloc.c" Component_="type_traits.h" FileName="_pthre~1.c|_pthread_alloc.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_pthread_alloc.c" SelfReg="false" Sequence="930"/>
+ <ROW File="pthread_alloc.h" Component_="vector.h" FileName="pthrea~1.h|pthread_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\pthread_alloc.h" SelfReg="false" Sequence="776"/>
+ <ROW File="pthread_alloc.h_1" Component_="vector.h_1" FileName="pthrea~1.h|pthread_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\pthread_alloc.h" SelfReg="false" Sequence="847"/>
+ <ROW File="pthread_alloc.h_2" Component_="type_traits.h" FileName="_pthre~1.h|_pthread_alloc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_pthread_alloc.h" SelfReg="false" Sequence="931"/>
+ <ROW File="ptrs_specialize.h" Component_="type_traits.h" FileName="_ptrs_~1.h|_ptrs_specialize.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_ptrs_specialize.h" SelfReg="false" Sequence="932"/>
+ <ROW File="queue" Component_="wctype.h" FileName="queue" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\queue" SelfReg="false" Sequence="704"/>
+ <ROW File="queue.h" Component_="vector.h" FileName="queue.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\queue.h" SelfReg="false" Sequence="777"/>
+ <ROW File="queue.h_1" Component_="vector.h_1" FileName="queue.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\queue.h" SelfReg="false" Sequence="848"/>
+ <ROW File="queue.h_2" Component_="type_traits.h" FileName="_queue.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_queue.h" SelfReg="false" Sequence="933"/>
+ <ROW File="range_errors.h" Component_="type_traits.h" FileName="_range~1.h|_range_errors.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_range_errors.h" SelfReg="false" Sequence="934"/>
+ <ROW File="raw_storage_iter.h" Component_="type_traits.h" FileName="_raw_s~1.h|_raw_storage_iter.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_raw_storage_iter.h" SelfReg="false" Sequence="935"/>
+ <ROW File="relops.h" Component_="type_traits.h" FileName="_relops.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops.h" SelfReg="false" Sequence="936"/>
+ <ROW File="relops_cont.h" Component_="type_traits.h" FileName="_relop~1.h|_relops_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops_cont.h" SelfReg="false" Sequence="937"/>
+ <ROW File="relops_cont.h_1" Component_="vector.h_2" FileName="_relop~1.h|_relops_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_relops_cont.h" SelfReg="false" Sequence="1034"/>
+ <ROW File="relops_hash_cont.h" Component_="type_traits.h" FileName="_relop~2.h|_relops_hash_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops_hash_cont.h" SelfReg="false" Sequence="938"/>
+ <ROW File="relops_hash_cont.h_1" Component_="vector.h_2" FileName="_relop~2.h|_relops_hash_cont.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_relops_hash_cont.h" SelfReg="false" Sequence="1035"/>
+ <ROW File="relops_template.h" Component_="type_traits.h" FileName="_relop~3.h|_relops_template.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_relops_template.h" SelfReg="false" Sequence="939"/>
+ <ROW File="rlocks.h" Component_="wctype.h" FileName="rlocks.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\rlocks.h" SelfReg="false" Sequence="705"/>
+ <ROW File="rope" Component_="wctype.h" FileName="rope" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\rope" SelfReg="false" Sequence="706"/>
+ <ROW File="rope.c" Component_="type_traits.h" FileName="_rope.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_rope.c" SelfReg="false" Sequence="940"/>
+ <ROW File="rope.h" Component_="vector.h" FileName="rope.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\rope.h" SelfReg="false" Sequence="779"/>
+ <ROW File="rope.h_1" Component_="vector.h_1" FileName="rope.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\rope.h" SelfReg="false" Sequence="849"/>
+ <ROW File="rope.h_2" Component_="type_traits.h" FileName="_rope.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_rope.h" SelfReg="false" Sequence="941"/>
+ <ROW File="set" Component_="wctype.h" FileName="set" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\set" SelfReg="false" Sequence="707"/>
+ <ROW File="set.h" Component_="vector.h" FileName="set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\set.h" SelfReg="false" Sequence="780"/>
+ <ROW File="set.h_1" Component_="vector.h_1" FileName="set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\set.h" SelfReg="false" Sequence="850"/>
+ <ROW File="set.h_2" Component_="type_traits.h" FileName="_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_set.h" SelfReg="false" Sequence="942"/>
+ <ROW File="set.h_3" Component_="vector.h_3" FileName="_set.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_set.h" SelfReg="false" Sequence="1046"/>
+ <ROW File="setjmp.h" Component_="wctype.h" FileName="setjmp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\setjmp.h" SelfReg="false" Sequence="708"/>
+ <ROW File="signal.h" Component_="wctype.h" FileName="signal.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\signal.h" SelfReg="false" Sequence="709"/>
+ <ROW File="site_config.h" Component_="type_traits.h" FileName="_site_~1.h|_site_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_site_config.h" SelfReg="false" Sequence="943"/>
+ <ROW File="slice.lib" Component_="Ice.jar" FileName="slice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\lib\slice.lib" SelfReg="false" Sequence="513"/>
+ <ROW File="slice.lib_1" Component_="freezed.lib" FileName="slice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\lib\slice.lib" SelfReg="false" Sequence="564"/>
+ <ROW File="slice.lib_2" Component_="sliced.lib" FileName="slice.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\lib\slice.lib" SelfReg="false" Sequence="1078"/>
+ <ROW File="slice.vsdir" Component_="slice.vsdir" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\slice.vsdir" SelfReg="false" Sequence="1084"/>
+ <ROW File="slice.vsdir_1" Component_="slice.vsdir_1" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\slice.vsdir" SelfReg="false" Sequence="1087"/>
+ <ROW File="slice.vsdir_2" Component_="slice.vsdir_2" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\Slice\slice.vsdir" SelfReg="false" Sequence="1090"/>
+ <ROW File="slice.vsdir_3" Component_="slice.vsdir_3" FileName="slice~1.vsd|slice.vsdir" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\vsplugin\templates\vs\Slice\slice.vsdir" SelfReg="false" Sequence="1091"/>
<ROW File="slice2cpp.exe" Component_="slice2cpp.exe" FileName="slice2~1.exe|slice2cpp.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\slice2cpp.exe" SelfReg="false" Sequence="362" DigSign="true"/>
<ROW File="slice2cpp.exe_1" Component_="slice2cpp.exe_1" FileName="slice2~1.exe|slice2cpp.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\slice2cpp.exe" SelfReg="false" Sequence="467" DigSign="true"/>
<ROW File="slice2cs.exe" Component_="slice2cs.exe" FileName="slice2cs.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\slice2cs.exe" SelfReg="false" Sequence="363" DigSign="true"/>
@@ -1391,160 +1391,160 @@
<ROW File="slice2rb.exe_1" Component_="slice2rb.exe_1" FileName="slice2rb.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\slice2rb.exe" SelfReg="false" Sequence="475" DigSign="true"/>
<ROW File="slice34b.dll" Component_="slice34b.dll" FileName="slice34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\slice34b.dll" SelfReg="false" Sequence="371" DigSign="true"/>
<ROW File="slice34b.dll_1" Component_="slice34b.dll_1" FileName="slice34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\slice34b.dll" SelfReg="false" Sequence="476" DigSign="true"/>
- <ROW File="slice34b_vc6.dll" Component_="slice34b_vc6.dll" FileName="slice3~2.dll|slice34b_vc6.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\slice34b_vc6.dll" SelfReg="false" Sequence="509" DigSign="true"/>
- <ROW File="slice34b_vc6d.dll" Component_="slice34b_vc6d.dll" FileName="slice3~3.dll|slice34b_vc6d.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\slice34b_vc6d.dll" SelfReg="false" Sequence="513" DigSign="true"/>
- <ROW File="slice34b_vc6d.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="slice3~2.pdb|slice34b_vc6d.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\slice34b_vc6d.pdb" SelfReg="false" Sequence="520"/>
<ROW File="slice34bd.dll" Component_="slice34bd.dll" FileName="slice3~1.dll|slice34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\slice34bd.dll" SelfReg="false" Sequence="385" DigSign="true"/>
<ROW File="slice34bd.dll_1" Component_="slice34bd.dll_1" FileName="slice3~1.dll|slice34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\slice34bd.dll" SelfReg="false" Sequence="477" DigSign="true"/>
<ROW File="slice34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="slice3~1.pdb|slice34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\bin\slice34bd.pdb" SelfReg="false" Sequence="384"/>
<ROW File="slice34bd.pdb_1" Component_="freeze34bd.pdb" FileName="slice3~1.pdb|slice34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\bin\slice34bd.pdb" SelfReg="false" Sequence="508"/>
- <ROW File="sliced.lib" Component_="Ice.jar" FileName="sliced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\sliced.lib" SelfReg="false" Sequence="538"/>
- <ROW File="sliced.lib_1" Component_="freezed.lib" FileName="sliced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\sliced.lib" SelfReg="false" Sequence="563"/>
- <ROW File="sliced.lib_2" Component_="sliced.lib" FileName="sliced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\sliced.lib" SelfReg="false" Sequence="1087"/>
- <ROW File="slist" Component_="wctype.h" FileName="slist" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\slist" SelfReg="false" Sequence="722"/>
- <ROW File="slist.c" Component_="type_traits.h" FileName="_slist.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist.c" SelfReg="false" Sequence="956"/>
- <ROW File="slist.h" Component_="vector.h" FileName="slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\slist.h" SelfReg="false" Sequence="793"/>
- <ROW File="slist.h_1" Component_="vector.h_1" FileName="slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\slist.h" SelfReg="false" Sequence="863"/>
- <ROW File="slist.h_2" Component_="type_traits.h" FileName="_slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist.h" SelfReg="false" Sequence="957"/>
- <ROW File="slist.h_3" Component_="vector.h_2" FileName="_slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_slist.h" SelfReg="false" Sequence="1048"/>
- <ROW File="slist.h_4" Component_="vector.h_3" FileName="_slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_slist.h" SelfReg="false" Sequence="1059"/>
- <ROW File="slist_base.c" Component_="type_traits.h" FileName="_slist~1.c|_slist_base.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist_base.c" SelfReg="false" Sequence="958"/>
- <ROW File="slist_base.h" Component_="type_traits.h" FileName="_slist~1.h|_slist_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist_base.h" SelfReg="false" Sequence="959"/>
- <ROW File="sparc_atomic.h" Component_="type_traits.h" FileName="_sparc~1.h|_sparc_atomic.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_sparc_atomic.h" SelfReg="false" Sequence="960"/>
+ <ROW File="sliced.lib" Component_="Ice.jar" FileName="sliced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug\cpp\lib\sliced.lib" SelfReg="false" Sequence="526"/>
+ <ROW File="sliced.lib_1" Component_="freezed.lib" FileName="sliced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Debug-x64\cpp\lib\sliced.lib" SelfReg="false" Sequence="551"/>
+ <ROW File="sliced.lib_2" Component_="sliced.lib" FileName="sliced.lib" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\lib\sliced.lib" SelfReg="false" Sequence="1075"/>
+ <ROW File="slicevc60_34b.dll" Component_="slicevc60_34b.dll" FileName="slicev~2.dll|slicevc60_34b.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Release\cpp\bin\slicevc60_34b.dll" SelfReg="false" Sequence="1172"/>
+ <ROW File="slicevc60_34bd.dll" Component_="slicevc60_34bd.dll" FileName="slicev~1.dll|slicevc60_34bd.dll" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\slicevc60_34bd.dll" SelfReg="false" Sequence="1164"/>
+ <ROW File="slicevc60_34bd.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="slicev~1.pdb|slicevc60_34bd.pdb" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC6\Debug\cpp\bin\slicevc60_34bd.pdb" SelfReg="false" Sequence="1171"/>
+ <ROW File="slist" Component_="wctype.h" FileName="slist" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\slist" SelfReg="false" Sequence="710"/>
+ <ROW File="slist.c" Component_="type_traits.h" FileName="_slist.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist.c" SelfReg="false" Sequence="944"/>
+ <ROW File="slist.h" Component_="vector.h" FileName="slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\slist.h" SelfReg="false" Sequence="781"/>
+ <ROW File="slist.h_1" Component_="vector.h_1" FileName="slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\slist.h" SelfReg="false" Sequence="851"/>
+ <ROW File="slist.h_2" Component_="type_traits.h" FileName="_slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist.h" SelfReg="false" Sequence="945"/>
+ <ROW File="slist.h_3" Component_="vector.h_2" FileName="_slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_slist.h" SelfReg="false" Sequence="1036"/>
+ <ROW File="slist.h_4" Component_="vector.h_3" FileName="_slist.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_slist.h" SelfReg="false" Sequence="1047"/>
+ <ROW File="slist_base.c" Component_="type_traits.h" FileName="_slist~1.c|_slist_base.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist_base.c" SelfReg="false" Sequence="946"/>
+ <ROW File="slist_base.h" Component_="type_traits.h" FileName="_slist~1.h|_slist_base.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_slist_base.h" SelfReg="false" Sequence="947"/>
+ <ROW File="sparc_atomic.h" Component_="type_traits.h" FileName="_sparc~1.h|_sparc_atomic.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_sparc_atomic.h" SelfReg="false" Sequence="948"/>
<ROW File="ssleay32.dll" Component_="ssleay32.dll" FileName="ssleay32.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\ssleay32.dll" SelfReg="false" Sequence="29" DigSign="true"/>
<ROW File="ssleay32.dll_1" Component_="ssleay32.dll_1" FileName="ssleay32.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\x64\ssleay32.dll" SelfReg="false" Sequence="34" DigSign="true"/>
<ROW File="ssleay32_vc6.dll" Component_="ssleay32_vc6.dll" FileName="ssleay~1.dll|ssleay32_vc6.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\ssleay32_vc6.dll" SelfReg="false" Sequence="30" DigSign="true"/>
- <ROW File="sstream" Component_="wctype.h" FileName="sstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\sstream" SelfReg="false" Sequence="723"/>
- <ROW File="sstream.c" Component_="type_traits.h" FileName="_sstream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_sstream.c" SelfReg="false" Sequence="961"/>
- <ROW File="sstream.h" Component_="vector.h" FileName="sstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\sstream.h" SelfReg="false" Sequence="794"/>
- <ROW File="sstream.h_1" Component_="type_traits.h" FileName="_sstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_sstream.h" SelfReg="false" Sequence="962"/>
- <ROW File="sstream.h_2" Component_="strstream.h" FileName="sstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\sstream.h" SelfReg="false" Sequence="1032"/>
- <ROW File="sstream_1" Component_="strstream" FileName="sstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\sstream" SelfReg="false" Sequence="1005"/>
- <ROW File="sstream_2" Component_="strstream_1" FileName="sstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\sstream" SelfReg="false" Sequence="1018"/>
- <ROW File="stack" Component_="wctype.h" FileName="stack" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stack" SelfReg="false" Sequence="724"/>
- <ROW File="stack.h" Component_="vector.h" FileName="stack.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\stack.h" SelfReg="false" Sequence="795"/>
- <ROW File="stack.h_1" Component_="vector.h_1" FileName="stack.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\stack.h" SelfReg="false" Sequence="864"/>
- <ROW File="stack.h_2" Component_="type_traits.h" FileName="_stack.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_stack.h" SelfReg="false" Sequence="963"/>
- <ROW File="stdarg.h" Component_="wctype.h" FileName="stdarg.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdarg.h" SelfReg="false" Sequence="725"/>
- <ROW File="stddef.h" Component_="wctype.h" FileName="stddef.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stddef.h" SelfReg="false" Sequence="726"/>
- <ROW File="stddef.h_1" Component_="stdlib.h" FileName="stddef.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\bak\stddef.h" SelfReg="false" Sequence="1021"/>
- <ROW File="stdexcep.h" Component_="vector.h" FileName="stdexcep.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\stdexcep.h" SelfReg="false" Sequence="796"/>
- <ROW File="stdexcept" Component_="wctype.h" FileName="stdexc~1|stdexcept" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdexcept" SelfReg="false" Sequence="727"/>
- <ROW File="stdio.h" Component_="wctype.h" FileName="stdio.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdio.h" SelfReg="false" Sequence="728"/>
- <ROW File="stdio_file.h" Component_="type_traits.h" FileName="_stdio~1.h|_stdio_file.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_stdio_file.h" SelfReg="false" Sequence="964"/>
- <ROW File="stdio_streambuf" Component_="wctype.h" FileName="stdio_~1|stdio_streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdio_streambuf" SelfReg="false" Sequence="729"/>
- <ROW File="stdiostream.h" Component_="wctype.h" FileName="stdios~1.h|stdiostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdiostream.h" SelfReg="false" Sequence="730"/>
- <ROW File="stdlib.h" Component_="wctype.h" FileName="stdlib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdlib.h" SelfReg="false" Sequence="731"/>
- <ROW File="stdlib.h_1" Component_="stdlib.h" FileName="stdlib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\bak\stdlib.h" SelfReg="false" Sequence="1020"/>
- <ROW File="stl_apcc.h" Component_="vc_select_lib.h" FileName="stl_apcc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_apcc.h" SelfReg="false" Sequence="809"/>
- <ROW File="stl_apple.h" Component_="vc_select_lib.h" FileName="stl_ap~1.h|stl_apple.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_apple.h" SelfReg="false" Sequence="810"/>
- <ROW File="stl_as400.h" Component_="vc_select_lib.h" FileName="stl_as~1.h|stl_as400.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_as400.h" SelfReg="false" Sequence="811"/>
- <ROW File="stl_bc.h" Component_="vc_select_lib.h" FileName="stl_bc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_bc.h" SelfReg="false" Sequence="812"/>
- <ROW File="stl_como.h" Component_="vc_select_lib.h" FileName="stl_como.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_como.h" SelfReg="false" Sequence="813"/>
- <ROW File="stl_confix.h" Component_="vc_select_lib.h" FileName="stl_co~1.h|stl_confix.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_confix.h" SelfReg="false" Sequence="814"/>
- <ROW File="stl_cray.h" Component_="vc_select_lib.h" FileName="stl_cray.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_cray.h" SelfReg="false" Sequence="815"/>
- <ROW File="stl_dec.h" Component_="vc_select_lib.h" FileName="stl_dec.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_dec.h" SelfReg="false" Sequence="816"/>
- <ROW File="stl_dec_vms.h" Component_="vc_select_lib.h" FileName="stl_de~1.h|stl_dec_vms.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_dec_vms.h" SelfReg="false" Sequence="817"/>
- <ROW File="stl_dm.h" Component_="vc_select_lib.h" FileName="stl_dm.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_dm.h" SelfReg="false" Sequence="818"/>
- <ROW File="stl_fujitsu.h" Component_="vc_select_lib.h" FileName="stl_fu~1.h|stl_fujitsu.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_fujitsu.h" SelfReg="false" Sequence="819"/>
- <ROW File="stl_gcc.h" Component_="vc_select_lib.h" FileName="stl_gcc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_gcc.h" SelfReg="false" Sequence="820"/>
- <ROW File="stl_hpacc.h" Component_="vc_select_lib.h" FileName="stl_hp~1.h|stl_hpacc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_hpacc.h" SelfReg="false" Sequence="821"/>
- <ROW File="stl_ibm.h" Component_="vc_select_lib.h" FileName="stl_ibm.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_ibm.h" SelfReg="false" Sequence="822"/>
- <ROW File="stl_icc.h" Component_="vc_select_lib.h" FileName="stl_icc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_icc.h" SelfReg="false" Sequence="823"/>
- <ROW File="stl_intel.h" Component_="vc_select_lib.h" FileName="stl_in~1.h|stl_intel.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_intel.h" SelfReg="false" Sequence="824"/>
- <ROW File="stl_kai.h" Component_="vc_select_lib.h" FileName="stl_kai.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_kai.h" SelfReg="false" Sequence="825"/>
- <ROW File="stl_mlc.h" Component_="vc_select_lib.h" FileName="stl_mlc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_mlc.h" SelfReg="false" Sequence="826"/>
- <ROW File="stl_msvc.h" Component_="vc_select_lib.h" FileName="stl_msvc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_msvc.h" SelfReg="false" Sequence="827"/>
- <ROW File="stl_mwerks.h" Component_="vc_select_lib.h" FileName="stl_mw~1.h|stl_mwerks.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_mwerks.h" SelfReg="false" Sequence="828"/>
- <ROW File="stl_mycomp.h" Component_="vc_select_lib.h" FileName="stl_my~1.h|stl_mycomp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_mycomp.h" SelfReg="false" Sequence="829"/>
- <ROW File="stl_sco.h" Component_="vc_select_lib.h" FileName="stl_sco.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_sco.h" SelfReg="false" Sequence="830"/>
- <ROW File="stl_select_lib.h" Component_="vc_select_lib.h" FileName="stl_se~1.h|stl_select_lib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_select_lib.h" SelfReg="false" Sequence="831"/>
- <ROW File="stl_sgi.h" Component_="vc_select_lib.h" FileName="stl_sgi.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_sgi.h" SelfReg="false" Sequence="832"/>
- <ROW File="stl_solaris.h" Component_="vc_select_lib.h" FileName="stl_so~1.h|stl_solaris.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_solaris.h" SelfReg="false" Sequence="833"/>
- <ROW File="stl_sunpro.h" Component_="vc_select_lib.h" FileName="stl_su~1.h|stl_sunpro.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_sunpro.h" SelfReg="false" Sequence="834"/>
- <ROW File="stl_symantec.h" Component_="vc_select_lib.h" FileName="stl_sy~1.h|stl_symantec.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_symantec.h" SelfReg="false" Sequence="835"/>
- <ROW File="stl_tmpl.h" Component_="vector.h" FileName="stl_tmpl.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\stl_tmpl.h" SelfReg="false" Sequence="797"/>
- <ROW File="stl_user_config.h" Component_="wctype.h" FileName="stl_us~1.h|stl_user_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl_user_config.h" SelfReg="false" Sequence="732"/>
- <ROW File="stl_watcom.h" Component_="vc_select_lib.h" FileName="stl_wa~1.h|stl_watcom.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_watcom.h" SelfReg="false" Sequence="836"/>
- <ROW File="stl_wince.h" Component_="vc_select_lib.h" FileName="stl_wi~1.h|stl_wince.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_wince.h" SelfReg="false" Sequence="837"/>
- <ROW File="stlcomp.h" Component_="vc_select_lib.h" FileName="stlcomp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stlcomp.h" SelfReg="false" Sequence="838"/>
- <ROW File="stlconf.h.in" Component_="unconfigure" FileName="stlcon~1.in|stlconf.h.in" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\stlconf.h.in" SelfReg="false" Sequence="1038"/>
- <ROW File="stlport_vc6.lib" Component_="sliced.lib" FileName="stlpor~2.lib|stlport_vc6.lib" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;lib\vc6\stlport_vc6.lib" SelfReg="false" Sequence="1173"/>
+ <ROW File="sstream" Component_="wctype.h" FileName="sstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\sstream" SelfReg="false" Sequence="711"/>
+ <ROW File="sstream.c" Component_="type_traits.h" FileName="_sstream.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_sstream.c" SelfReg="false" Sequence="949"/>
+ <ROW File="sstream.h" Component_="vector.h" FileName="sstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\sstream.h" SelfReg="false" Sequence="782"/>
+ <ROW File="sstream.h_1" Component_="type_traits.h" FileName="_sstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_sstream.h" SelfReg="false" Sequence="950"/>
+ <ROW File="sstream.h_2" Component_="strstream.h" FileName="sstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\sstream.h" SelfReg="false" Sequence="1020"/>
+ <ROW File="sstream_1" Component_="strstream" FileName="sstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\sstream" SelfReg="false" Sequence="993"/>
+ <ROW File="sstream_2" Component_="strstream_1" FileName="sstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\sstream" SelfReg="false" Sequence="1006"/>
+ <ROW File="stack" Component_="wctype.h" FileName="stack" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stack" SelfReg="false" Sequence="712"/>
+ <ROW File="stack.h" Component_="vector.h" FileName="stack.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\stack.h" SelfReg="false" Sequence="783"/>
+ <ROW File="stack.h_1" Component_="vector.h_1" FileName="stack.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\stack.h" SelfReg="false" Sequence="852"/>
+ <ROW File="stack.h_2" Component_="type_traits.h" FileName="_stack.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_stack.h" SelfReg="false" Sequence="951"/>
+ <ROW File="stdarg.h" Component_="wctype.h" FileName="stdarg.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdarg.h" SelfReg="false" Sequence="713"/>
+ <ROW File="stddef.h" Component_="wctype.h" FileName="stddef.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stddef.h" SelfReg="false" Sequence="714"/>
+ <ROW File="stddef.h_1" Component_="stdlib.h" FileName="stddef.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\bak\stddef.h" SelfReg="false" Sequence="1009"/>
+ <ROW File="stdexcep.h" Component_="vector.h" FileName="stdexcep.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\stdexcep.h" SelfReg="false" Sequence="784"/>
+ <ROW File="stdexcept" Component_="wctype.h" FileName="stdexc~1|stdexcept" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdexcept" SelfReg="false" Sequence="715"/>
+ <ROW File="stdio.h" Component_="wctype.h" FileName="stdio.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdio.h" SelfReg="false" Sequence="716"/>
+ <ROW File="stdio_file.h" Component_="type_traits.h" FileName="_stdio~1.h|_stdio_file.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_stdio_file.h" SelfReg="false" Sequence="952"/>
+ <ROW File="stdio_streambuf" Component_="wctype.h" FileName="stdio_~1|stdio_streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdio_streambuf" SelfReg="false" Sequence="717"/>
+ <ROW File="stdiostream.h" Component_="wctype.h" FileName="stdios~1.h|stdiostream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdiostream.h" SelfReg="false" Sequence="718"/>
+ <ROW File="stdlib.h" Component_="wctype.h" FileName="stdlib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stdlib.h" SelfReg="false" Sequence="719"/>
+ <ROW File="stdlib.h_1" Component_="stdlib.h" FileName="stdlib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\bak\stdlib.h" SelfReg="false" Sequence="1008"/>
+ <ROW File="stl_apcc.h" Component_="vc_select_lib.h" FileName="stl_apcc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_apcc.h" SelfReg="false" Sequence="797"/>
+ <ROW File="stl_apple.h" Component_="vc_select_lib.h" FileName="stl_ap~1.h|stl_apple.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_apple.h" SelfReg="false" Sequence="798"/>
+ <ROW File="stl_as400.h" Component_="vc_select_lib.h" FileName="stl_as~1.h|stl_as400.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_as400.h" SelfReg="false" Sequence="799"/>
+ <ROW File="stl_bc.h" Component_="vc_select_lib.h" FileName="stl_bc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_bc.h" SelfReg="false" Sequence="800"/>
+ <ROW File="stl_como.h" Component_="vc_select_lib.h" FileName="stl_como.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_como.h" SelfReg="false" Sequence="801"/>
+ <ROW File="stl_confix.h" Component_="vc_select_lib.h" FileName="stl_co~1.h|stl_confix.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_confix.h" SelfReg="false" Sequence="802"/>
+ <ROW File="stl_cray.h" Component_="vc_select_lib.h" FileName="stl_cray.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_cray.h" SelfReg="false" Sequence="803"/>
+ <ROW File="stl_dec.h" Component_="vc_select_lib.h" FileName="stl_dec.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_dec.h" SelfReg="false" Sequence="804"/>
+ <ROW File="stl_dec_vms.h" Component_="vc_select_lib.h" FileName="stl_de~1.h|stl_dec_vms.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_dec_vms.h" SelfReg="false" Sequence="805"/>
+ <ROW File="stl_dm.h" Component_="vc_select_lib.h" FileName="stl_dm.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_dm.h" SelfReg="false" Sequence="806"/>
+ <ROW File="stl_fujitsu.h" Component_="vc_select_lib.h" FileName="stl_fu~1.h|stl_fujitsu.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_fujitsu.h" SelfReg="false" Sequence="807"/>
+ <ROW File="stl_gcc.h" Component_="vc_select_lib.h" FileName="stl_gcc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_gcc.h" SelfReg="false" Sequence="808"/>
+ <ROW File="stl_hpacc.h" Component_="vc_select_lib.h" FileName="stl_hp~1.h|stl_hpacc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_hpacc.h" SelfReg="false" Sequence="809"/>
+ <ROW File="stl_ibm.h" Component_="vc_select_lib.h" FileName="stl_ibm.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_ibm.h" SelfReg="false" Sequence="810"/>
+ <ROW File="stl_icc.h" Component_="vc_select_lib.h" FileName="stl_icc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_icc.h" SelfReg="false" Sequence="811"/>
+ <ROW File="stl_intel.h" Component_="vc_select_lib.h" FileName="stl_in~1.h|stl_intel.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_intel.h" SelfReg="false" Sequence="812"/>
+ <ROW File="stl_kai.h" Component_="vc_select_lib.h" FileName="stl_kai.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_kai.h" SelfReg="false" Sequence="813"/>
+ <ROW File="stl_mlc.h" Component_="vc_select_lib.h" FileName="stl_mlc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_mlc.h" SelfReg="false" Sequence="814"/>
+ <ROW File="stl_msvc.h" Component_="vc_select_lib.h" FileName="stl_msvc.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_msvc.h" SelfReg="false" Sequence="815"/>
+ <ROW File="stl_mwerks.h" Component_="vc_select_lib.h" FileName="stl_mw~1.h|stl_mwerks.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_mwerks.h" SelfReg="false" Sequence="816"/>
+ <ROW File="stl_mycomp.h" Component_="vc_select_lib.h" FileName="stl_my~1.h|stl_mycomp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_mycomp.h" SelfReg="false" Sequence="817"/>
+ <ROW File="stl_sco.h" Component_="vc_select_lib.h" FileName="stl_sco.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_sco.h" SelfReg="false" Sequence="818"/>
+ <ROW File="stl_select_lib.h" Component_="vc_select_lib.h" FileName="stl_se~1.h|stl_select_lib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_select_lib.h" SelfReg="false" Sequence="819"/>
+ <ROW File="stl_sgi.h" Component_="vc_select_lib.h" FileName="stl_sgi.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_sgi.h" SelfReg="false" Sequence="820"/>
+ <ROW File="stl_solaris.h" Component_="vc_select_lib.h" FileName="stl_so~1.h|stl_solaris.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_solaris.h" SelfReg="false" Sequence="821"/>
+ <ROW File="stl_sunpro.h" Component_="vc_select_lib.h" FileName="stl_su~1.h|stl_sunpro.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_sunpro.h" SelfReg="false" Sequence="822"/>
+ <ROW File="stl_symantec.h" Component_="vc_select_lib.h" FileName="stl_sy~1.h|stl_symantec.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_symantec.h" SelfReg="false" Sequence="823"/>
+ <ROW File="stl_tmpl.h" Component_="vector.h" FileName="stl_tmpl.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\stl_tmpl.h" SelfReg="false" Sequence="785"/>
+ <ROW File="stl_user_config.h" Component_="wctype.h" FileName="stl_us~1.h|stl_user_config.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl_user_config.h" SelfReg="false" Sequence="720"/>
+ <ROW File="stl_watcom.h" Component_="vc_select_lib.h" FileName="stl_wa~1.h|stl_watcom.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_watcom.h" SelfReg="false" Sequence="824"/>
+ <ROW File="stl_wince.h" Component_="vc_select_lib.h" FileName="stl_wi~1.h|stl_wince.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stl_wince.h" SelfReg="false" Sequence="825"/>
+ <ROW File="stlcomp.h" Component_="vc_select_lib.h" FileName="stlcomp.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\stlcomp.h" SelfReg="false" Sequence="826"/>
+ <ROW File="stlconf.h.in" Component_="unconfigure" FileName="stlcon~1.in|stlconf.h.in" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\stlconf.h.in" SelfReg="false" Sequence="1026"/>
+ <ROW File="stlport_vc6.lib" Component_="sliced.lib" FileName="stlpor~2.lib|stlport_vc6.lib" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;lib\vc6\stlport_vc6.lib" SelfReg="false" Sequence="1161"/>
<ROW File="stlport_vc646.dll" Component_="stlport_vc646.dll" FileName="stlpor~1.dll|stlport_vc646.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\stlport_vc646.dll" SelfReg="false" Sequence="4" DigSign="true"/>
- <ROW File="stlport_vc6_stldebug.lib" Component_="sliced.lib" FileName="stlpor~1.lib|stlport_vc6_stldebug.lib" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;lib\vc6\stlport_vc6_stldebug.lib" SelfReg="false" Sequence="1172"/>
+ <ROW File="stlport_vc6_stldebug.lib" Component_="sliced.lib" FileName="stlpor~1.lib|stlport_vc6_stldebug.lib" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;lib\vc6\stlport_vc6_stldebug.lib" SelfReg="false" Sequence="1160"/>
<ROW File="stlport_vc6_stldebug46.dll" Component_="stlport_vc6_stldebug46.dll" FileName="stlpor~2.dll|stlport_vc6_stldebug46.dll" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\stlport_vc6_stldebug46.dll" SelfReg="false" Sequence="32" DigSign="true"/>
<ROW File="stlport_vc6_stldebug46.pdb" Component_="stlport_vc6_stldebug46.pdb" FileName="stlpor~1.pdb|stlport_vc6_stldebug46.pdb" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;bin\stlport_vc6_stldebug46.pdb" SelfReg="false" Sequence="31"/>
- <ROW File="stream_iterator.h" Component_="type_traits.h" FileName="_strea~1.h|_stream_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_stream_iterator.h" SelfReg="false" Sequence="965"/>
- <ROW File="streambu.h" Component_="vector.h" FileName="streambu.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\streambu.h" SelfReg="false" Sequence="798"/>
- <ROW File="streambuf" Component_="wctype.h" FileName="stream~1|streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\streambuf" SelfReg="false" Sequence="733"/>
- <ROW File="streambuf.c" Component_="type_traits.h" FileName="_strea~1.c|_streambuf.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_streambuf.c" SelfReg="false" Sequence="966"/>
- <ROW File="streambuf.h" Component_="wctype.h" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\streambuf.h" SelfReg="false" Sequence="734"/>
- <ROW File="streambuf.h_1" Component_="vector.h" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\streambuf.h" SelfReg="false" Sequence="799"/>
- <ROW File="streambuf.h_2" Component_="type_traits.h" FileName="_strea~2.h|_streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_streambuf.h" SelfReg="false" Sequence="967"/>
- <ROW File="streambuf.h_3" Component_="strstream.h" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\streambuf.h" SelfReg="false" Sequence="1033"/>
- <ROW File="streambuf.h_4" Component_="strstream.h_1" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\streambuf.h" SelfReg="false" Sequence="1065"/>
- <ROW File="streambuf.h_5" Component_="strstream.h_2" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\streambuf.h" SelfReg="false" Sequence="1069"/>
- <ROW File="streambuf_1" Component_="strstream" FileName="stream~1|streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\streambuf" SelfReg="false" Sequence="1006"/>
- <ROW File="streambuf_2" Component_="strstream_1" FileName="stream~1|streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\streambuf" SelfReg="false" Sequence="1019"/>
- <ROW File="streambuf_iterator.h" Component_="type_traits.h" FileName="_strea~3.h|_streambuf_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_streambuf_iterator.h" SelfReg="false" Sequence="968"/>
- <ROW File="string" Component_="wctype.h" FileName="string" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\string" SelfReg="false" Sequence="735"/>
- <ROW File="string.c" Component_="type_traits.h" FileName="_string.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string.c" SelfReg="false" Sequence="969"/>
- <ROW File="string.h" Component_="wctype.h" FileName="string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\string.h" SelfReg="false" Sequence="736"/>
- <ROW File="string.h_1" Component_="vector.h" FileName="string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\string.h" SelfReg="false" Sequence="800"/>
- <ROW File="string.h_2" Component_="type_traits.h" FileName="_string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string.h" SelfReg="false" Sequence="970"/>
- <ROW File="string.h_3" Component_="vector.h_2" FileName="_string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_string.h" SelfReg="false" Sequence="1049"/>
- <ROW File="string_fwd.c" Component_="type_traits.h" FileName="_strin~1.c|_string_fwd.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_fwd.c" SelfReg="false" Sequence="971"/>
- <ROW File="string_fwd.h" Component_="type_traits.h" FileName="_strin~1.h|_string_fwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_fwd.h" SelfReg="false" Sequence="972"/>
- <ROW File="string_hash.h" Component_="type_traits.h" FileName="_strin~2.h|_string_hash.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_hash.h" SelfReg="false" Sequence="973"/>
- <ROW File="string_io.c" Component_="type_traits.h" FileName="_strin~2.c|_string_io.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_io.c" SelfReg="false" Sequence="974"/>
- <ROW File="string_io.h" Component_="type_traits.h" FileName="_strin~3.h|_string_io.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_io.h" SelfReg="false" Sequence="975"/>
- <ROW File="strstrea.h" Component_="vector.h" FileName="strstrea.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\strstrea.h" SelfReg="false" Sequence="801"/>
- <ROW File="strstream" Component_="wctype.h" FileName="strstr~1|strstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\strstream" SelfReg="false" Sequence="737"/>
- <ROW File="strstream.h" Component_="wctype.h" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\strstream.h" SelfReg="false" Sequence="738"/>
- <ROW File="strstream.h_1" Component_="type_traits.h" FileName="_strst~1.h|_strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_strstream.h" SelfReg="false" Sequence="976"/>
- <ROW File="strstream.h_2" Component_="strstream.h" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\strstream.h" SelfReg="false" Sequence="1022"/>
- <ROW File="strstream.h_3" Component_="strstream.h_1" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\strstream.h" SelfReg="false" Sequence="1060"/>
- <ROW File="strstream.h_4" Component_="strstream.h_2" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\strstream.h" SelfReg="false" Sequence="1066"/>
- <ROW File="strstream_1" Component_="strstream" FileName="strstr~1|strstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\strstream" SelfReg="false" Sequence="994"/>
- <ROW File="strstream_2" Component_="strstream_1" FileName="strstr~1|strstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\strstream" SelfReg="false" Sequence="1007"/>
- <ROW File="tempbuf.c" Component_="type_traits.h" FileName="_tempbuf.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tempbuf.c" SelfReg="false" Sequence="977"/>
- <ROW File="tempbuf.h" Component_="vector.h_1" FileName="tempbuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\tempbuf.h" SelfReg="false" Sequence="865"/>
- <ROW File="tempbuf.h_1" Component_="type_traits.h" FileName="_tempbuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tempbuf.h" SelfReg="false" Sequence="978"/>
+ <ROW File="stream_iterator.h" Component_="type_traits.h" FileName="_strea~1.h|_stream_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_stream_iterator.h" SelfReg="false" Sequence="953"/>
+ <ROW File="streambu.h" Component_="vector.h" FileName="streambu.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\streambu.h" SelfReg="false" Sequence="786"/>
+ <ROW File="streambuf" Component_="wctype.h" FileName="stream~1|streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\streambuf" SelfReg="false" Sequence="721"/>
+ <ROW File="streambuf.c" Component_="type_traits.h" FileName="_strea~1.c|_streambuf.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_streambuf.c" SelfReg="false" Sequence="954"/>
+ <ROW File="streambuf.h" Component_="wctype.h" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\streambuf.h" SelfReg="false" Sequence="722"/>
+ <ROW File="streambuf.h_1" Component_="vector.h" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\streambuf.h" SelfReg="false" Sequence="787"/>
+ <ROW File="streambuf.h_2" Component_="type_traits.h" FileName="_strea~2.h|_streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_streambuf.h" SelfReg="false" Sequence="955"/>
+ <ROW File="streambuf.h_3" Component_="strstream.h" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\streambuf.h" SelfReg="false" Sequence="1021"/>
+ <ROW File="streambuf.h_4" Component_="strstream.h_1" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\streambuf.h" SelfReg="false" Sequence="1053"/>
+ <ROW File="streambuf.h_5" Component_="strstream.h_2" FileName="stream~1.h|streambuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\streambuf.h" SelfReg="false" Sequence="1057"/>
+ <ROW File="streambuf_1" Component_="strstream" FileName="stream~1|streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\streambuf" SelfReg="false" Sequence="994"/>
+ <ROW File="streambuf_2" Component_="strstream_1" FileName="stream~1|streambuf" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\streambuf" SelfReg="false" Sequence="1007"/>
+ <ROW File="streambuf_iterator.h" Component_="type_traits.h" FileName="_strea~3.h|_streambuf_iterator.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_streambuf_iterator.h" SelfReg="false" Sequence="956"/>
+ <ROW File="string" Component_="wctype.h" FileName="string" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\string" SelfReg="false" Sequence="723"/>
+ <ROW File="string.c" Component_="type_traits.h" FileName="_string.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string.c" SelfReg="false" Sequence="957"/>
+ <ROW File="string.h" Component_="wctype.h" FileName="string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\string.h" SelfReg="false" Sequence="724"/>
+ <ROW File="string.h_1" Component_="vector.h" FileName="string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\string.h" SelfReg="false" Sequence="788"/>
+ <ROW File="string.h_2" Component_="type_traits.h" FileName="_string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string.h" SelfReg="false" Sequence="958"/>
+ <ROW File="string.h_3" Component_="vector.h_2" FileName="_string.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_string.h" SelfReg="false" Sequence="1037"/>
+ <ROW File="string_fwd.c" Component_="type_traits.h" FileName="_strin~1.c|_string_fwd.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_fwd.c" SelfReg="false" Sequence="959"/>
+ <ROW File="string_fwd.h" Component_="type_traits.h" FileName="_strin~1.h|_string_fwd.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_fwd.h" SelfReg="false" Sequence="960"/>
+ <ROW File="string_hash.h" Component_="type_traits.h" FileName="_strin~2.h|_string_hash.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_hash.h" SelfReg="false" Sequence="961"/>
+ <ROW File="string_io.c" Component_="type_traits.h" FileName="_strin~2.c|_string_io.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_io.c" SelfReg="false" Sequence="962"/>
+ <ROW File="string_io.h" Component_="type_traits.h" FileName="_strin~3.h|_string_io.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_string_io.h" SelfReg="false" Sequence="963"/>
+ <ROW File="strstrea.h" Component_="vector.h" FileName="strstrea.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\strstrea.h" SelfReg="false" Sequence="789"/>
+ <ROW File="strstream" Component_="wctype.h" FileName="strstr~1|strstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\strstream" SelfReg="false" Sequence="725"/>
+ <ROW File="strstream.h" Component_="wctype.h" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\strstream.h" SelfReg="false" Sequence="726"/>
+ <ROW File="strstream.h_1" Component_="type_traits.h" FileName="_strst~1.h|_strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_strstream.h" SelfReg="false" Sequence="964"/>
+ <ROW File="strstream.h_2" Component_="strstream.h" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\using\strstream.h" SelfReg="false" Sequence="1010"/>
+ <ROW File="strstream.h_3" Component_="strstream.h_1" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\h\strstream.h" SelfReg="false" Sequence="1048"/>
+ <ROW File="strstream.h_4" Component_="strstream.h_2" FileName="strstr~1.h|strstream.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\h\strstream.h" SelfReg="false" Sequence="1054"/>
+ <ROW File="strstream_1" Component_="strstream" FileName="strstr~1|strstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\using\strstream" SelfReg="false" Sequence="982"/>
+ <ROW File="strstream_2" Component_="strstream_1" FileName="strstr~1|strstream" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wrap_std\strstream" SelfReg="false" Sequence="995"/>
+ <ROW File="tempbuf.c" Component_="type_traits.h" FileName="_tempbuf.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tempbuf.c" SelfReg="false" Sequence="965"/>
+ <ROW File="tempbuf.h" Component_="vector.h_1" FileName="tempbuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\tempbuf.h" SelfReg="false" Sequence="853"/>
+ <ROW File="tempbuf.h_1" Component_="type_traits.h" FileName="_tempbuf.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tempbuf.h" SelfReg="false" Sequence="966"/>
<ROW File="templates.xml" Component_="upgradeicegrid.py" FileName="templa~1.xml|templates.xml" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\config\templates.xml" SelfReg="false" Sequence="411"/>
- <ROW File="threads.c" Component_="type_traits.h" FileName="_threads.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_threads.c" SelfReg="false" Sequence="979"/>
- <ROW File="threads.h" Component_="type_traits.h" FileName="_threads.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_threads.h" SelfReg="false" Sequence="980"/>
- <ROW File="time.h_1" Component_="wctype.h" FileName="time.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\time.h" SelfReg="false" Sequence="739"/>
- <ROW File="time_facets.c" Component_="type_traits.h" FileName="_time_~1.c|_time_facets.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_time_facets.c" SelfReg="false" Sequence="981"/>
- <ROW File="time_facets.h" Component_="type_traits.h" FileName="_time_~1.h|_time_facets.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_time_facets.h" SelfReg="false" Sequence="982"/>
+ <ROW File="threads.c" Component_="type_traits.h" FileName="_threads.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_threads.c" SelfReg="false" Sequence="967"/>
+ <ROW File="threads.h" Component_="type_traits.h" FileName="_threads.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_threads.h" SelfReg="false" Sequence="968"/>
+ <ROW File="time.h_1" Component_="wctype.h" FileName="time.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\time.h" SelfReg="false" Sequence="727"/>
+ <ROW File="time_facets.c" Component_="type_traits.h" FileName="_time_~1.c|_time_facets.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_time_facets.c" SelfReg="false" Sequence="969"/>
+ <ROW File="time_facets.h" Component_="type_traits.h" FileName="_time_~1.h|_time_facets.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_time_facets.h" SelfReg="false" Sequence="970"/>
<ROW File="transformdb.exe" Component_="transformdb.exe" FileName="transf~1.exe|transformdb.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\bin\transformdb.exe" SelfReg="false" Sequence="332" DigSign="true"/>
<ROW File="transformdb.exe_1" Component_="transformdb.exe_1" FileName="transf~1.exe|transformdb.exe" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release-x64\cpp\bin\transformdb.exe" SelfReg="false" Sequence="439" DigSign="true"/>
- <ROW File="tree.c" Component_="type_traits.h" FileName="_tree.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tree.c" SelfReg="false" Sequence="983"/>
- <ROW File="tree.h" Component_="vector.h_1" FileName="tree.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\tree.h" SelfReg="false" Sequence="866"/>
- <ROW File="tree.h_1" Component_="type_traits.h" FileName="_tree.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tree.h" SelfReg="false" Sequence="984"/>
- <ROW File="tree.h_2" Component_="vector.h_2" FileName="_tree.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_tree.h" SelfReg="false" Sequence="1050"/>
- <ROW File="type_traits.h" Component_="type_traits.h" FileName="type_t~1.h|type_traits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\type_traits.h" SelfReg="false" Sequence="867"/>
- <ROW File="typeinfo" Component_="wctype.h" FileName="typeinfo" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\typeinfo" SelfReg="false" Sequence="740"/>
- <ROW File="typeinfo.h" Component_="wctype.h" FileName="typeinfo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\typeinfo.h" SelfReg="false" Sequence="741"/>
- <ROW File="typeinfo.h_1" Component_="vector.h" FileName="typeinfo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\typeinfo.h" SelfReg="false" Sequence="802"/>
- <ROW File="unconfigure" Component_="unconfigure" FileName="unconf~1|unconfigure" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\unconfigure" SelfReg="false" Sequence="1034"/>
- <ROW File="uninitialized.h" Component_="type_traits.h" FileName="_unini~1.h|_uninitialized.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_uninitialized.h" SelfReg="false" Sequence="985"/>
+ <ROW File="tree.c" Component_="type_traits.h" FileName="_tree.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tree.c" SelfReg="false" Sequence="971"/>
+ <ROW File="tree.h" Component_="vector.h_1" FileName="tree.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\tree.h" SelfReg="false" Sequence="854"/>
+ <ROW File="tree.h_1" Component_="type_traits.h" FileName="_tree.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_tree.h" SelfReg="false" Sequence="972"/>
+ <ROW File="tree.h_2" Component_="vector.h_2" FileName="_tree.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_tree.h" SelfReg="false" Sequence="1038"/>
+ <ROW File="type_traits.h" Component_="type_traits.h" FileName="type_t~1.h|type_traits.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\type_traits.h" SelfReg="false" Sequence="855"/>
+ <ROW File="typeinfo" Component_="wctype.h" FileName="typeinfo" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\typeinfo" SelfReg="false" Sequence="728"/>
+ <ROW File="typeinfo.h" Component_="wctype.h" FileName="typeinfo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\typeinfo.h" SelfReg="false" Sequence="729"/>
+ <ROW File="typeinfo.h_1" Component_="vector.h" FileName="typeinfo.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\typeinfo.h" SelfReg="false" Sequence="790"/>
+ <ROW File="unconfigure" Component_="unconfigure" FileName="unconf~1|unconfigure" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\new_compiler\unconfigure" SelfReg="false" Sequence="1022"/>
+ <ROW File="uninitialized.h" Component_="type_traits.h" FileName="_unini~1.h|_uninitialized.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_uninitialized.h" SelfReg="false" Sequence="973"/>
<ROW File="upgradeicegrid.py" Component_="upgradeicegrid.py" FileName="upgrad~1.py|upgradeicegrid.py" Attributes="0" SourcePath="&lt;ICE_BUILD_HOME&gt;VC9\Release\cpp\config\upgradeicegrid.py" SelfReg="false" Sequence="404"/>
- <ROW File="utility" Component_="wctype.h" FileName="utility" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\utility" SelfReg="false" Sequence="742"/>
- <ROW File="utility.h" Component_="vector.h" FileName="utility.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\utility.h" SelfReg="false" Sequence="803"/>
- <ROW File="valarray" Component_="wctype.h" FileName="valarray" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\valarray" SelfReg="false" Sequence="743"/>
- <ROW File="valarray.c" Component_="type_traits.h" FileName="_valar~1.c|_valarray.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_valarray.c" SelfReg="false" Sequence="986"/>
- <ROW File="valarray.h" Component_="vector.h" FileName="valarray.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\valarray.h" SelfReg="false" Sequence="804"/>
- <ROW File="valarray.h_1" Component_="type_traits.h" FileName="_valar~1.h|_valarray.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_valarray.h" SelfReg="false" Sequence="987"/>
- <ROW File="vc_select_lib.h" Component_="vc_select_lib.h" FileName="vc_sel~1.h|vc_select_lib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\vc_select_lib.h" SelfReg="false" Sequence="805"/>
- <ROW File="vector" Component_="wctype.h" FileName="vector" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\vector" SelfReg="false" Sequence="744"/>
- <ROW File="vector.c" Component_="type_traits.h" FileName="_vector.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_vector.c" SelfReg="false" Sequence="988"/>
- <ROW File="vector.h" Component_="vector.h" FileName="vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\vector.h" SelfReg="false" Sequence="746"/>
- <ROW File="vector.h_1" Component_="vector.h_1" FileName="vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\vector.h" SelfReg="false" Sequence="839"/>
- <ROW File="vector.h_2" Component_="type_traits.h" FileName="_vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_vector.h" SelfReg="false" Sequence="989"/>
- <ROW File="vector.h_3" Component_="vector.h_2" FileName="_vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_vector.h" SelfReg="false" Sequence="1039"/>
- <ROW File="vector.h_4" Component_="vector.h_3" FileName="_vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_vector.h" SelfReg="false" Sequence="1051"/>
- <ROW File="wchar.h" Component_="wctype.h" FileName="wchar.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wchar.h" SelfReg="false" Sequence="745"/>
- <ROW File="wctype.h" Component_="wctype.h" FileName="wctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wctype.h" SelfReg="false" Sequence="658"/>
+ <ROW File="utility" Component_="wctype.h" FileName="utility" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\utility" SelfReg="false" Sequence="730"/>
+ <ROW File="utility.h" Component_="vector.h" FileName="utility.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\utility.h" SelfReg="false" Sequence="791"/>
+ <ROW File="valarray" Component_="wctype.h" FileName="valarray" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\valarray" SelfReg="false" Sequence="731"/>
+ <ROW File="valarray.c" Component_="type_traits.h" FileName="_valar~1.c|_valarray.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_valarray.c" SelfReg="false" Sequence="974"/>
+ <ROW File="valarray.h" Component_="vector.h" FileName="valarray.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\valarray.h" SelfReg="false" Sequence="792"/>
+ <ROW File="valarray.h_1" Component_="type_traits.h" FileName="_valar~1.h|_valarray.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_valarray.h" SelfReg="false" Sequence="975"/>
+ <ROW File="vc_select_lib.h" Component_="vc_select_lib.h" FileName="vc_sel~1.h|vc_select_lib.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\config\vc_select_lib.h" SelfReg="false" Sequence="793"/>
+ <ROW File="vector" Component_="wctype.h" FileName="vector" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\vector" SelfReg="false" Sequence="732"/>
+ <ROW File="vector.c" Component_="type_traits.h" FileName="_vector.c" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_vector.c" SelfReg="false" Sequence="976"/>
+ <ROW File="vector.h" Component_="vector.h" FileName="vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\BC50\vector.h" SelfReg="false" Sequence="734"/>
+ <ROW File="vector.h_1" Component_="vector.h_1" FileName="vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\old_hp\vector.h" SelfReg="false" Sequence="827"/>
+ <ROW File="vector.h_2" Component_="type_traits.h" FileName="_vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\_vector.h" SelfReg="false" Sequence="977"/>
+ <ROW File="vector.h_3" Component_="vector.h_2" FileName="_vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\debug\_vector.h" SelfReg="false" Sequence="1027"/>
+ <ROW File="vector.h_4" Component_="vector.h_3" FileName="_vector.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\stl\wrappers\_vector.h" SelfReg="false" Sequence="1039"/>
+ <ROW File="wchar.h" Component_="wctype.h" FileName="wchar.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wchar.h" SelfReg="false" Sequence="733"/>
+ <ROW File="wctype.h" Component_="wctype.h" FileName="wctype.h" Attributes="0" SourcePath="&lt;THIRDPARTY_HOME&gt;include\stlport\wctype.h" SelfReg="false" Sequence="646"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.BuildComponent">
<ROW BuildKey="DefaultBuild" BuildName="DefaultBuild" BuildOrder="1" BuildType="1" Languages="en" InstallationType="4"/>