mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 04:11:34 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
14
CPP/7zip/Archive/Cab/CabRegister.cpp
Executable file → Normal file
14
CPP/7zip/Archive/Cab/CabRegister.cpp
Executable file → Normal 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)
|
||||
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user