other-licenses/7zstub/src/7zip/Archive/7z/7zHeader.cpp

branch
TOR_BUG_9701
changeset 8
97036ab72558
equal deleted inserted replaced
-1:000000000000 0:6e84c0726f2c
1 // 7z/Header.cpp
2
3 #include "StdAfx.h"
4 #include "7zHeader.h"
5
6 namespace NArchive {
7 namespace N7z {
8
9 Byte kSignature[kSignatureSize] = {'7' + 1, 'z', 0xBC, 0xAF, 0x27, 0x1C};
10 Byte kFinishSignature[kSignatureSize] = {'7' + 1, 'z', 0xBC, 0xAF, 0x27, 0x1C + 1};
11
12 class SignatureInitializer
13 {
14 public:
15 SignatureInitializer() { kSignature[0]--; kFinishSignature[0]--;};
16 } g_SignatureInitializer;
17
18 }}
19

mercurial