Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IsoRegister.cpp « Iso « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b43caba3792d7ca97b57a794ba78b47e0ff81332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// IsoRegister.cpp

#include "StdAfx.h"

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

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

static CArcInfo g_ArcInfo =
  { L"Iso", L"iso", 0, 0xE7, { 'C', 'D', '0', '0', '1', 0x1 }, 7, false, CreateArc, 0 };

REGISTER_ARC(Iso)