~ubuntu-branches/ubuntu/precise/p7zip/precise-updates

« back to all changes in this revision

Viewing changes to CPP/7zip/Archive/Z/ZRegister.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mohammed Adnène Trojette
  • Date: 2009-02-14 20:12:27 UTC
  • mfrom: (1.1.11 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090214201227-go63qxm9ozfdma60
Tags: 4.65~dfsg.1-1
* New upstream release.
* Remove wx2.8 Build-Depends added by mistakes (7zG is not yet
  intended to be built).
* Use dh_clean without -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// ZRegister.cpp
2
 
 
3
 
#include "StdAfx.h"
4
 
 
5
 
#include "../../Common/RegisterArc.h"
6
 
 
7
 
#include "ZHandler.h"
8
 
static IInArchive *CreateArc() { return new NArchive::NZ::CHandler;  }
9
 
 
10
 
static CArcInfo g_ArcInfo =
11
 
  { L"Z", L"z taz", L"* .tar", 5, { 0x1F, 0x9D }, 2, false, CreateArc, 0 };
12
 
 
13
 
REGISTER_ARC(Z)