mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 00:07:09 -06:00
14 lines
286 B
C++
Executable File
14 lines
286 B
C++
Executable File
// 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", 0, 0xEB, { 0}, 0, false, CreateArc, 0 };
|
|
|
|
REGISTER_ARC(Rpm)
|