Files
easy7zip/CPP/7zip/Archive/Deb/DebRegister.cpp
Igor Pavlov a145bfc7cf 4.45 beta
2016-05-28 00:15:50 +01:00

14 lines
326 B
C++
Executable File

// DebRegister.cpp
#include "StdAfx.h"
#include "../../Common/RegisterArc.h"
#include "DebHandler.h"
static IInArchive *CreateArc() { return new NArchive::NDeb::CHandler; }
static CArcInfo g_ArcInfo =
{ L"Deb", L"deb", 0, 0xEC, { '!', '<', 'a', 'r', 'c', 'h', '>', '\n' }, 8, false, CreateArc, 0 };
REGISTER_ARC(Deb)