chore: initial commit (extracted from Launchers monorepo)

Plugin: ns7zip v2.0.0
Architectures: x86-ansi, x86-unicode, amd64-unicode
License: LGPL-2.1-or-later
This commit is contained in:
Simone
2026-04-29 14:07:51 +02:00
commit d074cc7c07
3848 changed files with 1076682 additions and 0 deletions
@@ -0,0 +1,59 @@
// BranchMisc.h
#ifndef ZIP7_INC_COMPRESS_BRANCH_MISC_H
#define ZIP7_INC_COMPRESS_BRANCH_MISC_H
#include "../../../C/Bra.h"
#include "../../Common/MyCom.h"
#include "../ICoder.h"
namespace NCompress {
namespace NBranch {
Z7_CLASS_IMP_COM_1(
CCoder
, ICompressFilter
)
UInt32 _pc;
z7_Func_BranchConv BraFunc;
public:
CCoder(z7_Func_BranchConv bra): _pc(0), BraFunc(bra) {}
};
#ifndef Z7_EXTRACT_ONLY
Z7_CLASS_IMP_COM_3(
CEncoder
, ICompressFilter
, ICompressSetCoderProperties
, ICompressWriteCoderProperties
)
UInt32 _pc;
UInt32 _pc_Init;
UInt32 _alignment;
z7_Func_BranchConv BraFunc;
public:
CEncoder(z7_Func_BranchConv bra, UInt32 alignment):
_pc(0), _pc_Init(0), _alignment(alignment), BraFunc(bra) {}
};
#endif
Z7_CLASS_IMP_COM_2(
CDecoder
, ICompressFilter
, ICompressSetDecoderProperties2
)
UInt32 _pc;
UInt32 _pc_Init;
UInt32 _alignment;
z7_Func_BranchConv BraFunc;
public:
CDecoder(z7_Func_BranchConv bra, UInt32 alignment):
_pc(0), _pc_Init(0), _alignment(alignment), BraFunc(bra) {}
};
}}
#endif