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