chdman/3rdparty/lzma/CPP/7zip/Compress/LzmaRegister.cpp
2022-01-05 08:45:19 +02:00

23 lines
285 B
C++

// LzmaRegister.cpp
#include "StdAfx.h"
#include "../Common/RegisterCodec.h"
#include "LzmaDecoder.h"
#ifndef EXTRACT_ONLY
#include "LzmaEncoder.h"
#endif
namespace NCompress {
namespace NLzma {
REGISTER_CODEC_E(LZMA,
CDecoder(),
CEncoder(),
0x30101,
"LZMA")
}}