mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 22:07:08 -06:00
18 lines
286 B
C
Executable File
18 lines
286 B
C
Executable File
// GUI/Compress.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __GUI_COMPRESS_H
|
|
#define __GUI_COMPRESS_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
HRESULT CompressArchive(
|
|
const UString &archivePath,
|
|
const UStringVector &fileNames,
|
|
const UString &archiveType,
|
|
bool email,
|
|
bool showDialog);
|
|
|
|
#endif
|