Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ZipRegister.cpp « Zip « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 545e76c6a061f944ef2f5ab957c14ef6d00ddb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// ZipRegister.cpp

#include "StdAfx.h"

#include "../../Common/RegisterArc.h"

#include "ZipHandler.h"

namespace NArchive {
namespace NZip {

IMP_CreateArcIn
IMP_CreateArcOut

static CArcInfo g_ArcInfo =
  { "zip", "zip zipx jar xpi odt ods docx xlsx epub", 0, 1,
  3 + 4 + 4 + 6,
  {
    4, 0x50, 0x4B, 0x03, 0x04,
    4, 0x50, 0x4B, 0x05, 0x06,
    6, 0x50, 0x4B, 0x30, 0x30, 0x50, 0x4B,
  },
  0,
  NArcInfoFlags::kFindSignature |
  NArcInfoFlags::kMultiSignature |
  NArcInfoFlags::kUseGlobalOffset,
  REF_CreateArc_Pair, IsArc_Zip };

REGISTER_ARC(Zip)

}}