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

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/UI/Common/CompressCall.h')
-rw-r--r--[-rwxr-xr-x]CPP/7zip/UI/Common/CompressCall.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/CPP/7zip/UI/Common/CompressCall.h b/CPP/7zip/UI/Common/CompressCall.h
index f777b9f2..c71c21f7 100755..100644
--- a/CPP/7zip/UI/Common/CompressCall.h
+++ b/CPP/7zip/UI/Common/CompressCall.h
@@ -3,7 +3,7 @@
#ifndef __COMPRESS_CALL_H
#define __COMPRESS_CALL_H
-#include "Common/MyString.h"
+#include "../../../Common/MyString.h"
UString GetQuotedString(const UString &s);
@@ -11,11 +11,13 @@ HRESULT CompressFiles(
const UString &arcPathPrefix,
const UString &arcName,
const UString &arcType,
+ bool addExtension,
const UStringVector &names,
bool email, bool showDialog, bool waitFinish);
-HRESULT ExtractArchives(const UStringVector &arcPaths, const UString &outFolder, bool showDialog);
-HRESULT TestArchives(const UStringVector &arcPaths);
-HRESULT Benchmark(bool totalMode);
+void ExtractArchives(const UStringVector &arcPaths, const UString &outFolder, bool showDialog, bool elimDup);
+void TestArchives(const UStringVector &arcPaths);
+void CalcChecksum(const UStringVector &paths, const UString &methodName);
+void Benchmark(bool totalMode);
#endif