Files
easy7zip/CPP/7zip/UI/Common/CompressCall.h
Igor Pavlov a145bfc7cf 4.45 beta
2016-05-28 00:15:50 +01:00

31 lines
712 B
C
Executable File

// CompressCall.h
#ifndef __COMPRESSCALL_H
#define __COMPRESSCALL_H
#include "Common/String.h"
#include "Windows/Synchronization.h"
HRESULT MyCreateProcess(const UString &params,
LPCWSTR lpCurrentDirectory, bool waitFinish,
NWindows::NSynchronization::CEvent *event);
HRESULT CompressFiles(
const UString &curDir,
const UString &archiveName,
const UString &archiveType,
const UStringVector &names,
// const UString &outFolder,
bool email, bool showDialog, bool waitFinish);
HRESULT ExtractArchives(
const UStringVector &archivePaths,
const UString &outFolder, bool showDialog);
HRESULT TestArchives(const UStringVector &archivePaths);
HRESULT Benchmark();
#endif