Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorassarbad <none@none>2004-11-25 14:58:52 +0300
committerassarbad <none@none>2004-11-25 14:58:52 +0300
commit054a73ec1a666ed882cb88f2825702b5329a157d (patch)
tree503cdfed2e32f7e1abf0e6ca3a37e76cf7ed2392 /windirstat/windirstat.h
parent2fdaf49cc23dc5026d30d80766b6313440e0d178 (diff)
- Minor fixes (odd behavior of coloring in ANSI version, caching of the GetCompressedFileSize API)
for details see the changelog.txt
Diffstat (limited to 'windirstat/windirstat.h')
-rw-r--r--windirstat/windirstat.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/windirstat/windirstat.h b/windirstat/windirstat.h
index ec8cbf9..3229a69 100644
--- a/windirstat/windirstat.h
+++ b/windirstat/windirstat.h
@@ -64,15 +64,15 @@ public:
bool IsMountPoint(CString path);
bool IsJunctionPoint(CString path);
- bool IsCompressed(CString path);
- bool IsEncrypted(CString path);
-
COLORREF AltColor(); // Coloring of compressed items
COLORREF AltEncryptionColor(); // Coloring of encrypted items
CString GetCurrentProcessMemoryInfo();
CMyImageList *GetMyImageList();
+
+ ULONGLONG GetFileSizeWDS(CFileFind& finder);
+
void UpdateRamUsage();
void PeriodicalUpdateRamUsage();
@@ -109,6 +109,7 @@ protected:
CMountPoints m_mountPoints; // Mount point information
CMyImageList m_myImageList; // Out central image list
CPsapi m_psapi; // Dynamically linked psapi.dll (for RAM usage)
+ CGetCompressedFileSizeApi m_comprSize; // Dynamically linked API GetCompressedFileSize()
LONGLONG m_workingSet; // Current working set (RAM usage)
LONGLONG m_pageFaults; // Page faults so far (unused)
DWORD m_lastPeriodicalRamUsageUpdate; // Tick count
@@ -125,6 +126,10 @@ protected:
// $Log$
+// Revision 1.11 2004/11/25 11:58:52 assarbad
+// - Minor fixes (odd behavior of coloring in ANSI version, caching of the GetCompressedFileSize API)
+// for details see the changelog.txt
+//
// Revision 1.10 2004/11/14 08:49:06 bseifert
// Date/Time/Number formatting now uses User-Locale. New option to force old behavior.
//