Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CpioHeader.cpp « cpio « Archive « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e4d99cbc68605984be8bc4c5708473dae4ab8e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;
  }

}}}