rlm@1: // LzhRegister.cpp rlm@1: rlm@1: #include "StdAfx.h" rlm@1: rlm@1: #include "../../Common/RegisterArc.h" rlm@1: rlm@1: #include "LzhHandler.h" rlm@1: static IInArchive *CreateArc() { return new NArchive::NLzh::CHandler; } rlm@1: rlm@1: static CArcInfo g_ArcInfo = rlm@1: { L"Lzh", L"lzh lha", 0, 6, { '-', 'l' }, 2, false, CreateArc, 0 }; rlm@1: rlm@1: REGISTER_ARC(Lzh)