mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-16 12:11:47 -06:00
14 lines
314 B
C++
Executable File
14 lines
314 B
C++
Executable File
// IsoRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../Common/RegisterArc.h"
|
|
|
|
#include "IsoHandler.h"
|
|
static IInArchive *CreateArc() { return new NArchive::NIso::CHandler; }
|
|
|
|
static CArcInfo g_ArcInfo =
|
|
{ L"Iso", L"iso", 0, 0xE7, { 'C', 'D', '0', '0', '1', 0x1 }, 7, false, CreateArc, 0 };
|
|
|
|
REGISTER_ARC(Iso)
|