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

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

#include "StdAfx.h"

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

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

static CArcInfo g_ArcInfo =
  { L"Rpm", L"rpm", L".cpio.gz", 0xEB, { 0}, 0, false, CreateArc, 0 };

REGISTER_ARC(Rpm)