Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UdfRegister.cpp « Udf « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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)