mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 02:07:09 -06:00
27 lines
630 B
C
Executable File
27 lines
630 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,
|
|
LPCTSTR lpCurrentDirectory,
|
|
NWindows::NSynchronization::CEvent *event = NULL);
|
|
HRESULT CompressFiles(
|
|
const UString &curDir,
|
|
const UString &archiveName,
|
|
const UStringVector &names,
|
|
// const UString &outFolder,
|
|
bool email, bool showDialog);
|
|
|
|
HRESULT ExtractArchives(
|
|
const UStringVector &archivePaths,
|
|
const UString &outFolder, bool showDialog);
|
|
|
|
HRESULT TestArchives(const UStringVector &archivePaths);
|
|
|
|
#endif
|
|
|