view src/win32/7zip/7z/CPP/7zip/Archive/Lzma/LzmaArcRegister.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 // LzmaArcRegister.cpp
3 #include "StdAfx.h"
5 #include "../../Common/RegisterArc.h"
7 #include "LzmaHandler.h"
9 static IInArchive *CreateArc() { return new NArchive::NLzma::CHandler; }
11 static CArcInfo g_ArcInfo =
12 { L"Lzma", L"lzma lzma86", 0, 0xA, {0 }, 0, true, CreateArc, NULL };
14 REGISTER_ARC(Lzma)