Files
easy7zip/7zip/UI/Common/CompressCall.h
Igor Pavlov 8c1b5c7b7e 3.13
2016-05-28 00:15:41 +01:00

23 lines
548 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,
NWindows::NSynchronization::CEvent *event = NULL);
HRESULT CompressFiles(const UString &archiveName,
const UStringVector &names,
// const UString &outFolder,
bool email, bool showDialog);
HRESULT ExtractArchive(const UString &archiveName,
const UString &outFolder, bool showDialog);
HRESULT TestArchive(const UString &archiveName);
#endif