mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 20:06:59 -06:00
14 lines
326 B
C++
Executable File
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)
|