mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 12:07:07 -06:00
25 lines
384 B
C++
Executable File
25 lines
384 B
C++
Executable File
// CompressionMode.h
|
|
|
|
#ifndef __ZIP_COMPRESSIONMETHOD_H
|
|
#define __ZIP_COMPRESSIONMETHOD_H
|
|
|
|
#include "Common/Vector.h"
|
|
#include "Common/String.h"
|
|
|
|
namespace NArchive {
|
|
namespace NZip {
|
|
|
|
struct CCompressionMethodMode
|
|
{
|
|
CRecordVector<Byte> MethodSequence;
|
|
// bool MaximizeRatio;
|
|
UInt32 NumPasses;
|
|
UInt32 NumFastBytes;
|
|
bool PasswordIsDefined;
|
|
AString Password;
|
|
};
|
|
|
|
}}
|
|
|
|
#endif
|