mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 18:11:37 -06:00
3.13
This commit is contained in:
26
7zip/Archive/Zip/ZipCompressionMode.h
Executable file
26
7zip/Archive/Zip/ZipCompressionMode.h
Executable file
@@ -0,0 +1,26 @@
|
||||
// CompressionMode.h
|
||||
|
||||
#pragma once
|
||||
|
||||
#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
|
||||
Reference in New Issue
Block a user