mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 00:07:09 -06:00
- 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
18 lines
290 B
C++
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")
|