You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
501 B
20 lines
501 B
4 months ago
|
// 7zHeader.cpp
|
||
|
|
||
|
#include "StdAfx.h"
|
||
|
|
||
|
#include "7zHeader.h"
|
||
|
|
||
|
namespace NArchive {
|
||
|
namespace N7z {
|
||
|
|
||
|
Byte kSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
|
||
|
#ifdef _7Z_VOL
|
||
|
Byte kFinishSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C + 1};
|
||
|
#endif
|
||
|
|
||
|
// We can change signature. So file doesn't contain correct signature.
|
||
|
// struct SignatureInitializer { SignatureInitializer() { kSignature[0]--; } };
|
||
|
// static SignatureInitializer g_SignatureInitializer;
|
||
|
|
||
|
}}
|