This commit is contained in:
Igor Pavlov
2003-12-11 00:00:00 +00:00
committed by Kornel Lesiński
commit 8c1b5c7b7e
982 changed files with 118799 additions and 0 deletions

18
7zip/Archive/7z/7zHeader.cpp Executable file
View File

@@ -0,0 +1,18 @@
// 7z/Header.cpp
#include "StdAfx.h"
#include "7zHeader.h"
namespace NArchive {
namespace N7z {
BYTE kSignature[kSignatureSize] = {'7' + 1, 'z', 0xBC, 0xAF, 0x27, 0x1C};
class SignatureInitializer
{
public:
SignatureInitializer() { kSignature[0]--; };
} g_SignatureInitializer;
}}