Update to 7-Zip Version 22.00

See: https://sourceforge.net/p/sevenzip/discussion/45797/thread/9c2d9061ce/
This commit is contained in:
Tino Reichardt
2022-08-07 09:59:33 +02:00
parent 6a4fe97fc3
commit 57558682a8
211 changed files with 15251 additions and 2482 deletions

View File

@@ -3,9 +3,24 @@
#ifndef __UNIQ_BLOCKS_H
#define __UNIQ_BLOCKS_H
#include "../../Common/MyTypes.h"
#include "../../Common/MyBuffer.h"
#include "../../Common/MyVector.h"
#include "../../Common/MyString.h"
struct C_UInt32_UString_Map
{
CRecordVector<UInt32> Numbers;
UStringVector Strings;
void Add_UInt32(const UInt32 n)
{
Numbers.AddToUniqueSorted(n);
}
int Find(const UInt32 n)
{
return Numbers.FindInSorted(n);
}
};
struct CUniqBlocks
{