mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 10:24:13 -06:00
15 lines
304 B
C++
Executable File
15 lines
304 B
C++
Executable File
// 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)
|