mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 04:07:08 -06:00
28 lines
658 B
C
Executable File
28 lines
658 B
C
Executable File
// CompressCall.h
|
|
|
|
#ifndef __COMPRESSCALL_H
|
|
#define __COMPRESSCALL_H
|
|
|
|
#include "Common/String.h"
|
|
#include "Windows/Synchronization.h"
|
|
|
|
HRESULT MyCreateProcess(const UString ¶ms,
|
|
LPCWSTR lpCurrentDirectory, bool waitFinish,
|
|
NWindows::NSynchronization::CEvent *event);
|
|
|
|
HRESULT CompressFiles(
|
|
const UString &curDir,
|
|
const UString &archiveName,
|
|
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);
|
|
|
|
#endif
|
|
|