mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 14:07:13 -06:00
14 lines
306 B
C++
Executable File
14 lines
306 B
C++
Executable File
// UdfRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../Common/RegisterArc.h"
|
|
|
|
#include "UdfHandler.h"
|
|
static IInArchive *CreateArc() { return new NArchive::NUdf::CHandler; }
|
|
|
|
static CArcInfo g_ArcInfo =
|
|
{ L"Udf", L"iso", 0, 0xE0, { 0, 'N', 'S', 'R', '0' }, 5, false, CreateArc, 0 };
|
|
|
|
REGISTER_ARC(Udf)
|