mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 22:07:05 -06:00
9.21
This commit is contained in:
committed by
Kornel Lesiński
parent
de4f8c22fe
commit
35596517f2
@@ -3,33 +3,4 @@
|
||||
#ifndef __DEFLATE_PROPS_H
|
||||
#define __DEFLATE_PROPS_H
|
||||
|
||||
#include "../ICoder.h"
|
||||
|
||||
namespace NArchive {
|
||||
|
||||
class CDeflateProps
|
||||
{
|
||||
UInt32 Level;
|
||||
UInt32 NumPasses;
|
||||
UInt32 Fb;
|
||||
UInt32 Algo;
|
||||
UInt32 Mc;
|
||||
bool McDefined;
|
||||
|
||||
void Init()
|
||||
{
|
||||
Level = NumPasses = Fb = Algo = Mc = 0xFFFFFFFF;
|
||||
McDefined = false;
|
||||
}
|
||||
void Normalize();
|
||||
public:
|
||||
CDeflateProps() { Init(); }
|
||||
bool IsMaximum() const { return Algo > 0; }
|
||||
|
||||
HRESULT SetCoderProperties(ICompressSetCoderProperties *setCoderProperties);
|
||||
HRESULT SetProperties(const wchar_t **names, const PROPVARIANT *values, Int32 numProps);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user