mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 20:11:34 -06:00
23 lines
413 B
C++
Executable File
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;
|
|
}
|
|
|
|
}}}
|
|
|