Index: src/libchcore/TSubTaskStatsInfo.h
===================================================================
diff -u -N -r16df8fcf9d5b3317338aece64762771419beaf4a -r79399818d01f20d3a83766543e98ef5f0ee3de38
--- src/libchcore/TSubTaskStatsInfo.h	(.../TSubTaskStatsInfo.h)	(revision 16df8fcf9d5b3317338aece64762771419beaf4a)
+++ src/libchcore/TSubTaskStatsInfo.h	(.../TSubTaskStatsInfo.h)	(revision 79399818d01f20d3a83766543e98ef5f0ee3de38)
@@ -98,6 +98,9 @@
 	unsigned long long GetCurrentItemProcessedSize() const;
 	unsigned long long GetCurrentItemTotalSize() const;
 
+	bool CanCurrentItemSilentResume() const;
+	void SetCurrentItemSilentResume(bool bEnableSilentResume);
+
 	// current index
 	void SetCurrentIndex(file_count_t fcIndex);
 	file_count_t GetCurrentIndex() const;
@@ -148,6 +151,7 @@
 		eMod_SubOperationType,
 		eMod_IsInitialized,
 		eMod_CurrentItemIndex,
+		eMod_CurrentItemCanResumeSilently,
 
 		// last item
 		eMod_Last
@@ -170,6 +174,7 @@
 
 	TSharedModificationTracker<unsigned long long, Bitset, eMod_CurrentItemProcessedSize> m_ullCurrentItemProcessedSize;
 	TSharedModificationTracker<unsigned long long, Bitset, eMod_CurrentItemTotalSize> m_ullCurrentItemTotalSize;
+	TSharedModificationTracker<bool, Bitset, eMod_CurrentItemCanResumeSilently> m_bCurrentItemSilentResume;
 
 	mutable TSharedModificationTracker<TSimpleTimer, Bitset, eMod_Timer> m_tTimer;