Index: src/libchcore/TSubTaskStatsInfo.h =================================================================== diff -u -N -ra3d1e4c03280ece94af75d9aef32a65266cf8050 -ra44714d5c7ec0f50a376f4d0ea919ee5a224f834 --- src/libchcore/TSubTaskStatsInfo.h (.../TSubTaskStatsInfo.h) (revision a3d1e4c03280ece94af75d9aef32a65266cf8050) +++ src/libchcore/TSubTaskStatsInfo.h (.../TSubTaskStatsInfo.h) (revision a44714d5c7ec0f50a376f4d0ea919ee5a224f834) @@ -33,6 +33,7 @@ #include "ISerializerRowReader.h" #include "TSharedModificationTracker.h" #include +#include "CommonDataTypes.h" BEGIN_CHCORE_NAMESPACE @@ -63,17 +64,17 @@ public: TSubTaskStatsInfo(); - void Init(int iCurrentBufferIndex, size_t stTotalCount, size_t stProcessedCount, unsigned long long ullTotalSize, unsigned long long ullProcessedSize, const TString& strCurrentPath); + void Init(int iCurrentBufferIndex, file_count_t fcTotalCount, file_count_t fcProcessedCount, unsigned long long ullTotalSize, unsigned long long ullProcessedSize, const TString& strCurrentPath); void Clear(); bool IsInitialized() const; void GetSnapshot(TSubTaskStatsSnapshotPtr& spStatsSnapshot) const; - void IncreaseProcessedCount(size_t stIncreaseBy); - void SetProcessedCount(size_t stIndex); + void IncreaseProcessedCount(file_count_t fcIncreaseBy); + void SetProcessedCount(file_count_t fcIndex); - void SetTotalCount(size_t stCount); + void SetTotalCount(file_count_t fcCount); // size stats void IncreaseProcessedSize(unsigned long long ullIncreaseBy); @@ -148,8 +149,8 @@ TSharedModificationTracker m_ullProcessedSize; mutable TSharedModificationTracker m_tSizeSpeed; - TSharedModificationTracker m_stTotalCount; - TSharedModificationTracker m_stProcessedCount; + TSharedModificationTracker m_fcTotalCount; + TSharedModificationTracker m_fcProcessedCount; mutable TSharedModificationTracker m_tCountSpeed; TSharedModificationTracker m_ullCurrentItemProcessedSize;