Skip to content

Commit 46b0055

Browse files
author
Oleh Kulykov
committed
1725888727
1 parent c1a0183 commit 46b0055

22 files changed

+45
-45
lines changed

src/CPP/7zip/Common/MethodProps.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ inline HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32
4545
}
4646

4747

48-
struct CProp
48+
struct CProp Z7_final
4949
{
5050
PROPID Id;
5151
bool IsOptional;

src/CPP/7zip/Common/OutBuffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct COutBufferException: public CSystemException
1414
};
1515
#endif
1616

17-
class COutBuffer
17+
class COutBuffer Z7_final
1818
{
1919
protected:
2020
Byte *_buf;

src/CPP/7zip/Common/RegisterArc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "../Archive/IArchive.h"
77

8-
struct CArcInfo
8+
struct CArcInfo Z7_final
99
{
1010
UInt32 Flags;
1111
Byte Id;

src/CPP/7zip/Common/RegisterCodec.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
typedef void * (*CreateCodecP)();
1111

12-
struct CCodecInfo
12+
struct CCodecInfo Z7_final
1313
{
1414
CreateCodecP CreateDecoder;
1515
CreateCodecP CreateEncoder;
@@ -84,7 +84,7 @@ void RegisterCodec(const CCodecInfo *codecInfo) throw();
8484

8585

8686

87-
struct CHasherInfo
87+
struct CHasherInfo Z7_final
8888
{
8989
IHasher * (*CreateHasher)();
9090
CMethodId Id;

src/CPP/7zip/Common/StreamBinder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The difference for cases where Reading must be closed before Writing closing
2727
writer thread always will detect closing of reading in latest iteration after all data processing iterations
2828
*/
2929

30-
class CStreamBinder
30+
class CStreamBinder Z7_final
3131
{
3232
NWindows::NSynchronization::CAutoResetEvent _canRead_Event;
3333
// NWindows::NSynchronization::CAutoResetEvent _canWrite_Event;

src/CPP/7zip/Common/UniqBlocks.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "../../Common/MyBuffer.h"
77
#include "../../Common/MyString.h"
88

9-
struct C_UInt32_UString_Map
9+
struct C_UInt32_UString_Map Z7_final
1010
{
1111
CRecordVector<UInt32> Numbers;
1212
UStringVector Strings;
@@ -22,7 +22,7 @@ struct C_UInt32_UString_Map
2222
};
2323

2424

25-
struct CUniqBlocks
25+
struct CUniqBlocks Z7_final
2626
{
2727
CObjectVector<CByteBuffer> Bufs;
2828
CUIntVector Sorted;

src/CPP/7zip/Compress/PpmdEncoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
namespace NCompress {
1515
namespace NPpmd {
1616

17-
struct CEncProps
17+
struct CEncProps Z7_final
1818
{
1919
UInt32 MemSize;
2020
UInt32 ReduceSize;

src/CPP/7zip/Crypto/7zAes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const unsigned kKeySize = 32;
1717
const unsigned kSaltSizeMax = 16;
1818
const unsigned kIvSizeMax = 16; // AES_BLOCK_SIZE;
1919

20-
class CKeyInfo
20+
class CKeyInfo Z7_final
2121
{
2222
public:
2323
unsigned NumCyclesPower;

src/CPP/7zip/Crypto/MyAes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class CAesCoder:
7777

7878

7979
#ifndef Z7_EXTRACT_ONLY
80-
struct CAesCbcEncoder: public CAesCoder
80+
struct CAesCbcEncoder Z7_final: public CAesCoder
8181
{
8282
CAesCbcEncoder(unsigned keySize = 0): CAesCoder(keySize)
8383
{
@@ -88,7 +88,7 @@ struct CAesCbcEncoder: public CAesCoder
8888
};
8989
#endif
9090

91-
struct CAesCbcDecoder: public CAesCoder
91+
struct CAesCbcDecoder Z7_final: public CAesCoder
9292
{
9393
CAesCbcDecoder(unsigned keySize = 0): CAesCoder(keySize)
9494
{

src/CPP/7zip/Crypto/RandGen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#else
2222

23-
class CRandomGenerator
23+
class CRandomGenerator Z7_final
2424
{
2525
Byte _buff[SHA256_DIGEST_SIZE];
2626
bool _needInit;

0 commit comments

Comments
 (0)