Index: src/libchcore/IFeedbackHandler.h
===================================================================
diff -u -N -r458af7bf8c35950fdeb4b906950437596324aea1 -r04a9f2496d5931c7e06ff815fb8d0e3eabaf2cf2
--- src/libchcore/IFeedbackHandler.h	(.../IFeedbackHandler.h)	(revision 458af7bf8c35950fdeb4b906950437596324aea1)
+++ src/libchcore/IFeedbackHandler.h	(.../IFeedbackHandler.h)	(revision 04a9f2496d5931c7e06ff815fb8d0e3eabaf2cf2)
@@ -20,6 +20,7 @@
 #define __FEEDBACKHANDLERBASE_H__
 
 #include "libchcore.h"
+#include "TString.h"
 
 BEGIN_CHCORE_NAMESPACE
 
@@ -45,17 +46,17 @@
 
 struct FEEDBACK_FILEERROR
 {
-	const wchar_t* pszSrcPath;
-	const wchar_t* pszDstPath;
+	TString strSrcPath;
+	TString strDstPath;
 	EFileError eFileError;			// error type
 	ulong_t ulError;				// system error
 };
 
 struct FEEDBACK_NOTENOUGHSPACE
 {
 	ull_t ullRequiredSize;
-	const wchar_t* pszSrcPath;
-	const wchar_t* pszDstPath;
+	TString strSrcPath;
+	TString strDstPath;
 };
 
 class LIBCHCORE_API IFeedbackHandler