comparison src/win32/7zip/7z/CPP/7zip/Archive/GZip/GZipRegister.cpp @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
comparison
equal deleted inserted replaced
0:8ced16adf2e1 1:f9f4f1b99eed
1 // GZipRegister.cpp
2
3 #include "StdAfx.h"
4
5 #include "../../Common/RegisterArc.h"
6
7 #include "GZipHandler.h"
8 static IInArchive *CreateArc() { return new NArchive::NGZip::CHandler; }
9 #ifndef EXTRACT_ONLY
10 static IOutArchive *CreateArcOut() { return new NArchive::NGZip::CHandler; }
11 #else
12 #define CreateArcOut 0
13 #endif
14
15 static CArcInfo g_ArcInfo =
16 { L"GZip", L"gz gzip tgz tpz", L"* * .tar .tar", 0xEF, { 0x1F, 0x8B, 8 }, 3, true, CreateArc, CreateArcOut };
17
18 REGISTER_ARC(GZip)