OSDN Git Service

add japanese site html
[sevenzip/7-Zip.git] / 7z457 / CPP / 7zip / Archive / Cpio / CpioHeader.cpp
1 // Archive/cpio/Header.h
2
3 #include "StdAfx.h"
4
5 #include "CpioHeader.h"
6
7 namespace NArchive {
8 namespace NCpio {
9 namespace NFileHeader {
10
11   namespace NMagic 
12   {
13     extern const char *kMagic1 = "070701";
14     extern const char *kMagic2 = "070702";
15     extern const char *kMagic3 = "070707";
16     extern const char *kEndName = "TRAILER!!!";
17
18     const Byte kMagicForRecord2[2] = { 0xC7, 0x71 };
19     // unsigned short kMagicForRecord2BE = 0xC771;
20   }
21
22 }}}
23