p7zip/CPP/7zip/Archive/Cab/CabRegister.cpp

20 lines
252 B
C++
Raw Normal View History

2017-10-11 12:35:36 +02:00
// CabRegister.cpp
#include "StdAfx.h"
#include "../../Common/RegisterArc.h"
#include "CabHandler.h"
namespace NArchive {
namespace NCab {
REGISTER_ARC_I(
"Cab", "cab", 0, 8,
NHeader::kMarker,
0,
NArcInfoFlags::kFindSignature,
NULL)
}}