Index: Copy Handler/Copy Handler.vcproj
===================================================================
diff -u -r9b4010bc607fb69b676fddefa2e876396d00732d -r5d5f6e5b4a377c3b01a0ef17ad079770319f30ff
--- Copy Handler/Copy Handler.vcproj	(.../Copy Handler.vcproj)	(revision 9b4010bc607fb69b676fddefa2e876396d00732d)
+++ Copy Handler/Copy Handler.vcproj	(.../Copy Handler.vcproj)	(revision 5d5f6e5b4a377c3b01a0ef17ad079770319f30ff)
@@ -370,9 +370,6 @@
 				</FileConfiguration>
 			</File>
 			<File
-				RelativePath="..\modules\App Framework\crc32.cpp">
-			</File>
-			<File
 				RelativePath="CustomCopyDlg.cpp">
 				<FileConfiguration
 					Name="Debug|Win32">
@@ -1402,18 +1399,12 @@
 				RelativePath="..\modules\App Framework\charvect.h">
 			</File>
 			<File
-				RelativePath="..\..\..\MODULES\App Framework\ConfigEntry.h">
-			</File>
-			<File
 				RelativePath="..\modules\App Framework\ConfigManager.h">
 			</File>
 			<File
 				RelativePath="COPY HANDLER.h">
 			</File>
 			<File
-				RelativePath="..\modules\App Framework\crc32.h">
-			</File>
-			<File
 				RelativePath="CustomCopyDlg.h">
 			</File>
 			<File
Index: modules/App Framework/FileEx.cpp
===================================================================
diff -u -r7d997aef1e72f049ed1bc199e1b765d737d9963a -r5d5f6e5b4a377c3b01a0ef17ad079770319f30ff
--- modules/App Framework/FileEx.cpp	(.../FileEx.cpp)	(revision 7d997aef1e72f049ed1bc199e1b765d737d9963a)
+++ modules/App Framework/FileEx.cpp	(.../FileEx.cpp)	(revision 5d5f6e5b4a377c3b01a0ef17ad079770319f30ff)
@@ -580,7 +580,7 @@
 		DWORD dwSize=psih->dwToRead-sizeof(SERIALIZEINFOHEADER);
 
 		// check the header crc
-		DWORD dwhc=CRC32(m_pbySerialBuffer, sizeof(SERIALIZEINFOHEADER)-sizeof(DWORD));
+		DWORD dwhc=icpf::crc32(m_pbySerialBuffer, sizeof(SERIALIZEINFOHEADER)-sizeof(DWORD));
 		if (dwhc != psih->dwHeaderCRC32)
 		{
 			ClearSerialization();
@@ -614,7 +614,7 @@
 		// NOTE: do not update the position - we need ptr at the beginning of data
 
 		// now we are almost ready to retrieve data - only the crc check for the data
-		DWORD dwCRC=CRC32(m_pbySerialBuffer+sizeof(SERIALIZEINFOHEADER), psih->dwDataSize-sizeof(SERIALIZEINFOHEADER));
+		DWORD dwCRC=icpf::crc32(m_pbySerialBuffer+sizeof(SERIALIZEINFOHEADER), psih->dwDataSize-sizeof(SERIALIZEINFOHEADER));
 		if (psih->dwCRC32 != dwCRC)
 		{
 			ClearSerialization();
@@ -661,7 +661,7 @@
 		// fill the header (real data information)
 		SERIALIZEINFOHEADER *psih=(SERIALIZEINFOHEADER*)m_pbySerialBuffer;
 		psih->dwDataSize=m_dwSerialBufferPos;
-		psih->dwCRC32=CRC32(m_pbySerialBuffer+sizeof(SERIALIZEINFOHEADER), m_dwSerialBufferPos-sizeof(SERIALIZEINFOHEADER));
+		psih->dwCRC32=icpf::crc32(m_pbySerialBuffer+sizeof(SERIALIZEINFOHEADER), m_dwSerialBufferPos-sizeof(SERIALIZEINFOHEADER));
 
 #ifndef DISABLE_CRYPT
 		// we could encrypt the data here if needed
@@ -687,7 +687,7 @@
 #endif
 
 		// calc the header crc
-		psih->dwHeaderCRC32=CRC32(m_pbySerialBuffer, sizeof(SERIALIZEINFOHEADER)-sizeof(DWORD));
+		psih->dwHeaderCRC32=icpf::crc32(m_pbySerialBuffer, sizeof(SERIALIZEINFOHEADER)-sizeof(DWORD));
 
 		// write the buffer
 		WriteBuffer(m_pbySerialBuffer, psih->dwToRead);
Fisheye: Tag 5d5f6e5b4a377c3b01a0ef17ad079770319f30ff refers to a dead (removed) revision in file `modules/App Framework/crc32.cpp'.
Fisheye: No comparison available.  Pass `N' to diff?
Fisheye: Tag 5d5f6e5b4a377c3b01a0ef17ad079770319f30ff refers to a dead (removed) revision in file `modules/App Framework/crc32.h'.
Fisheye: No comparison available.  Pass `N' to diff?