mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 01:15:00 -06:00
- using the recommended buffersizes from zstd lib - compile also an codec dll with support for legacy versions
19 lines
298 B
C++
19 lines
298 B
C++
// ZstdRegister.cpp
|
|
// (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")
|