summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/win/CPP/7zip/Archive/Udf/UdfRegister.cpp
blob: 1b08d120b77d3726fe8bc155d8e03c8fbb88ea02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 img", 0, 0xE0, { 0, 'N', 'S', 'R', '0' }, 5, false, CreateArc, 0 };

REGISTER_ARC(Udf)