view src/win32/7zip/7z/CPP/7zip/Archive/Lzh/LzhRegister.cpp @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
line wrap: on
line source
1 // LzhRegister.cpp
3 #include "StdAfx.h"
5 #include "../../Common/RegisterArc.h"
7 #include "LzhHandler.h"
8 static IInArchive *CreateArc() { return new NArchive::NLzh::CHandler; }
10 static CArcInfo g_ArcInfo =
11 { L"Lzh", L"lzh lha", 0, 6, { '-', 'l' }, 2, false, CreateArc, 0 };
13 REGISTER_ARC(Lzh)