This commit is contained in:
Igor Pavlov
2014-11-23 00:00:00 +00:00
committed by Kornel Lesiński
parent 83f8ddcc5b
commit f08f4dcc3c
1158 changed files with 76451 additions and 35082 deletions

14
CPP/7zip/Archive/Cab/CabRegister.cpp Executable file → Normal file
View File

@@ -5,9 +5,19 @@
#include "../../Common/RegisterArc.h"
#include "CabHandler.h"
static IInArchive *CreateArc() { return new NArchive::NCab::CHandler; }
namespace NArchive {
namespace NCab {
IMP_CreateArcIn
static CArcInfo g_ArcInfo =
{ L"Cab", L"cab", 0, 8, { 0x4D, 0x53, 0x43, 0x46 }, 4, false, CreateArc, 0 };
{ "Cab", "cab", 0, 8,
8, { 'M', 'S', 'C', 'F', 0, 0, 0, 0 },
0,
NArcInfoFlags::kFindSignature,
CreateArc };
REGISTER_ARC(Cab)
}}