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

HfsRegister.cpp « Hfs « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51c3c2b15241fc36ff92626957851b8a7fe5fffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// HfsRegister.cpp

#include "StdAfx.h"

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

#include "HfsHandler.h"
static IInArchive *CreateArc() { return new NArchive::NHfs::CHandler; }

static CArcInfo g_ArcInfo =
  { L"HFS", L"hfs", 0, 0xE3, { 'H', '+', 0, 4 }, 4, false, CreateArc, 0 };

REGISTER_ARC(Hfs)