4.44 beta

This commit is contained in:
Igor Pavlov
2007-01-20 00:00:00 +00:00
committed by Kornel Lesiński
parent 804edc5756
commit d9666cf046
1331 changed files with 10535 additions and 13791 deletions

View File

@@ -0,0 +1,23 @@
// Archive/cpio/Header.h
#include "StdAfx.h"
#include "CpioHeader.h"
namespace NArchive {
namespace NCpio {
namespace NFileHeader {
namespace NMagic
{
extern const char *kMagic1 = "070701";
extern const char *kMagic2 = "070702";
extern const char *kMagic3 = "070707";
extern const char *kEndName = "TRAILER!!!";
const Byte kMagicForRecord2[2] = { 0xC7, 0x71 };
// unsigned short kMagicForRecord2BE = 0xC771;
}
}}}