mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 06:06:59 -06:00
20 lines
252 B
C++
Executable File
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)
|
|
|
|
}}
|