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

WimRegister.cpp « Wim « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c8e216f0f2b9df414f9dc1233a3b5b26ca2fc4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// WimRegister.cpp

#include "StdAfx.h"

#include "../../Common/RegisterArc.h"

#include "WimHandler.h"
static IInArchive *CreateArc() { return new NArchive::NWim::CHandler; }

static CArcInfo g_ArcInfo =
  { L"Wim", L"wim swm", 0, 0xE6, { 'M', 'S', 'W', 'I', 'M', 0, 0, 0 }, 8, false, CreateArc, 0 };

REGISTER_ARC(Wim)