chdman/3rdparty/lzma/CPP/7zip/Compress/LzmaRegister.cpp

23 lines
285 B
C++
Raw Normal View History

2021-12-14 11:06:18 +00:00
// 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")
}}