view src/win32/7zip/7z/CPP/7zip/Archive/7z/7zRegister.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 // 7zRegister.cpp
3 #include "StdAfx.h"
5 #include "../../Common/RegisterArc.h"
7 #include "7zHandler.h"
8 static IInArchive *CreateArc() { return new NArchive::N7z::CHandler; }
9 #ifndef EXTRACT_ONLY
10 static IOutArchive *CreateArcOut() { return new NArchive::N7z::CHandler; }
11 #else
12 #define CreateArcOut 0
13 #endif
15 static CArcInfo g_ArcInfo =
16 { L"7z", L"7z", 0, 7, {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}, 6, false, CreateArc, CreateArcOut };
18 REGISTER_ARC(7z)