From a145bfc7cf17f7bbcfae8f0064333c8ea75b455c Mon Sep 17 00:00:00 2001 From: Igor Pavlov Date: Tue, 17 Apr 2007 00:00:00 +0000 Subject: 4.45 beta --- CPP/7zip/Archive/Lzh/LzhRegister.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 CPP/7zip/Archive/Lzh/LzhRegister.cpp (limited to 'CPP/7zip/Archive/Lzh/LzhRegister.cpp') diff --git a/CPP/7zip/Archive/Lzh/LzhRegister.cpp b/CPP/7zip/Archive/Lzh/LzhRegister.cpp new file mode 100755 index 00000000..b9b1d473 --- /dev/null +++ b/CPP/7zip/Archive/Lzh/LzhRegister.cpp @@ -0,0 +1,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) -- cgit v1.2.3