mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
14 lines
340 B
C++
Executable File
14 lines
340 B
C++
Executable File
// ChmRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../Common/RegisterArc.h"
|
|
|
|
#include "ChmHandler.h"
|
|
static IInArchive *CreateArc() { return new NArchive::NChm::CHandler; }
|
|
|
|
static CArcInfo g_ArcInfo =
|
|
{ L"Chm", L"chm chi chq chw hxs hxi hxr hxq hxw lit", 0, 0xE9, { 'I', 'T', 'S', 'F' }, 4, false, CreateArc, 0 };
|
|
|
|
REGISTER_ARC(Chm)
|