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

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

#include "StdAfx.h"

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

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

static CArcInfo g_ArcInfo =
  { L"Lzh", L"lzh lha", 0, 6, { '-', 'l' }, 2, false, CreateArc, 0 };

REGISTER_ARC(Lzh)