xref: /third_party/lzma/CPP/7zip/Compress/Bcj2Register.cpp (revision 370b324c)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/lzma/CPP/7zip/Compress/
1// Bcj2Register.cpp
2
3#include "StdAfx.h"
4
5#include "../Common/RegisterCodec.h"
6
7#include "Bcj2Coder.h"
8
9namespace NCompress {
10namespace NBcj2 {
11
12REGISTER_CODEC_CREATE_2(CreateCodec, CDecoder(), ICompressCoder2)
13#ifndef Z7_EXTRACT_ONLY
14REGISTER_CODEC_CREATE_2(CreateCodecOut, CEncoder(), ICompressCoder2)
15#else
16#define CreateCodecOut NULL
17#endif
18
19REGISTER_CODEC_VAR(BCJ2)
20  { CreateCodec, CreateCodecOut, 0x303011B, "BCJ2", 4, false };
21
22REGISTER_CODEC(BCJ2)
23
24}}
25

Indexes created Thu Nov 07 10:32:03 CST 2024