summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/7zip/Archive/Com/ComRegister.cpp
blob: 6712b890fb643da93629c85dfa9a34f5ff7969ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ComRegister.cpp

#include "StdAfx.h"

#include "../../Common/RegisterArc.h"

#include "ComHandler.h"
static IInArchive *CreateArc() { return new NArchive::NCom::CHandler; }

static CArcInfo g_ArcInfo =
  { L"Compound", L"msi msp doc xls ppt", 0, 0xE5, { 0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1 }, 8, false, CreateArc, 0 };

REGISTER_ARC(Com)