Files
easy7zip/CPP/7zip/UI/Common/CompressCall.h
Igor Pavlov 35596517f2 9.21
2016-05-28 00:16:05 +01:00

22 lines
538 B
C
Executable File

// CompressCall.h
#ifndef __COMPRESS_CALL_H
#define __COMPRESS_CALL_H
#include "Common/MyString.h"
UString GetQuotedString(const UString &s);
HRESULT CompressFiles(
const UString &arcPathPrefix,
const UString &arcName,
const UString &arcType,
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);
#endif