summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/win/CPP/7zip/Archive/Rar/RarRegister.cpp
blob: 2bcf569ef8aedd947fefb8bf9f9c9ed2d03eeeee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RarRegister.cpp

#include "StdAfx.h"

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

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

static CArcInfo g_ArcInfo =
  { L"Rar", L"rar r00", 0, 3, {0x52 , 0x61, 0x72, 0x21, 0x1a, 0x07, 0x00}, 7, false, CreateArc, 0,  };

REGISTER_ARC(Rar)