Files
easy7zip/CPP/7zip/Archive/Cab/CabRegister.cpp
Igor Pavlov ec44a8a070 22.00
2022-06-23 11:43:16 +01:00

20 lines
252 B
C++
Executable File

// 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)
}}