Files
easy7zip/CPP/7zip/Compress/LizardRegister.cpp
Tino Reichardt 5ff0657d9f Major changes, including Brotli and Lizard
- update of zstd-mt library
- add brotli v0.6.0
- add lizard v2.0
- xxhash is from zstd for lz4, lz5 and lizard now
- update also the documentation, where needed
2017-05-25 18:40:15 +02:00

18 lines
290 B
C++

// (C) 2017 Tino Reichardt
#include "StdAfx.h"
#include "../Common/RegisterCodec.h"
#include "LizardDecoder.h"
#ifndef EXTRACT_ONLY
#include "LizardEncoder.h"
#endif
REGISTER_CODEC_E(
LIZARD,
NCompress::NLIZARD::CDecoder(),
NCompress::NLIZARD::CEncoder(),
0x4F71106, "LIZARD")