mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 12:24:08 -06:00
14 lines
293 B
C++
Executable File
14 lines
293 B
C++
Executable File
// CpioRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../Common/RegisterArc.h"
|
|
|
|
#include "CpioHandler.h"
|
|
static IInArchive *CreateArc() { return new NArchive::NCpio::CHandler; }
|
|
|
|
static CArcInfo g_ArcInfo =
|
|
{ L"Cpio", L"cpio", 0, 0xED, { 0 }, 0, false, CreateArc, 0 };
|
|
|
|
REGISTER_ARC(Cpio)
|