summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/UI/Common/CompressCall.h
blob: feb45790651f6c4315cf4aa6dc8be60f7ac003bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// CompressCall.h

#ifndef __COMPRESSCALL_H
#define __COMPRESSCALL_H

#include "Common/MyString.h"
#include "Windows/Synchronization.h"

HRESULT MyCreateProcess(const UString &params,
   LPCWSTR lpCurrentDirectory, bool waitFinish,
   NWindows::NSynchronization::CBaseEvent *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