mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-17 16:11:52 -06:00
17.00
This commit is contained in:
@@ -14,26 +14,18 @@
|
||||
namespace NArchive {
|
||||
namespace NZip {
|
||||
|
||||
struct CBaseProps
|
||||
{
|
||||
CMethodProps MethodInfo;
|
||||
Int32 Level;
|
||||
const CMethodId kMethodId_ZipBase = 0x040100;
|
||||
const CMethodId kMethodId_BZip2 = 0x040202;
|
||||
|
||||
#ifndef _7ZIP_ST
|
||||
UInt32 NumThreads;
|
||||
bool NumThreadsWasChanged;
|
||||
#endif
|
||||
struct CBaseProps: public CMultiMethodProps
|
||||
{
|
||||
bool IsAesMode;
|
||||
Byte AesKeyMode;
|
||||
|
||||
void Init()
|
||||
{
|
||||
MethodInfo.Clear();
|
||||
Level = -1;
|
||||
#ifndef _7ZIP_ST
|
||||
NumThreads = NWindows::NSystem::GetNumberOfProcessors();;
|
||||
NumThreadsWasChanged = false;
|
||||
#endif
|
||||
CMultiMethodProps::Init();
|
||||
|
||||
IsAesMode = false;
|
||||
AesKeyMode = 3;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user