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

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

#include "StdAfx.h"

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

#include "LzmaHandler.h"

static IInArchive *CreateArc() { return new NArchive::NLzma::CHandler;  }

static CArcInfo g_ArcInfo =
  { L"Lzma", L"lzma lzma86", 0, 0xA, {0 }, 0, true, CreateArc, NULL };

REGISTER_ARC(Lzma)