summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/7zip/Archive/Chm/ChmRegister.cpp
blob: abebe6c67e8442366498ff3291ff5d6d1cc74971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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)