Files
easy7zip/CPP/7zip/Archive/Iso/IsoRegister.cpp
Igor Pavlov f08f4dcc3c 9.34
2016-05-28 00:16:51 +01:00

24 lines
330 B
C++

// IsoRegister.cpp
#include "StdAfx.h"
#include "../../Common/RegisterArc.h"
#include "IsoHandler.h"
namespace NArchive {
namespace NIso {
IMP_CreateArcIn
static CArcInfo g_ArcInfo =
{ "Iso", "iso img", 0, 0xE7,
5, { 'C', 'D', '0', '0', '1' },
NArchive::NIso::kStartPos + 1,
0,
CreateArc };
REGISTER_ARC(Iso)
}}