mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-02-01 10:24:11 -06:00
22 lines
538 B
C
Executable File
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
|