mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 13:15:04 -06:00
- updated zstd to latest devel release - lz4, lz5 and zstd is included now - all three support threading
18 lines
278 B
C++
18 lines
278 B
C++
// (C) 2016 Tino Reichardt
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../Common/RegisterCodec.h"
|
|
|
|
#include "ZstdDecoder.h"
|
|
|
|
#ifndef EXTRACT_ONLY
|
|
#include "ZstdEncoder.h"
|
|
#endif
|
|
|
|
REGISTER_CODEC_E(
|
|
ZSTD,
|
|
NCompress::NZSTD::CDecoder(),
|
|
NCompress::NZSTD::CEncoder(),
|
|
0x4F71101, "ZSTD")
|