Files
easy7zip/7zip/Archive/cpio/CpioHeader.cpp
Igor Pavlov 8c1b5c7b7e 3.13
2016-05-28 00:15:41 +01:00

23 lines
413 B
C++
Executable File

// 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 *kEndName = "TRAILER!!!";
extern unsigned short kMagicForRecord2 = 0x71C7;
extern unsigned short kMagicForRecord2BE = 0xC771;
}
}}}