mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-17 18:11:50 -06:00
18 lines
276 B
C++
18 lines
276 B
C++
// LzmaRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../Common/RegisterCodec.h"
|
|
|
|
#include "LzmaDecoder.h"
|
|
|
|
#ifndef EXTRACT_ONLY
|
|
#include "LzmaEncoder.h"
|
|
#endif
|
|
|
|
REGISTER_CODEC_E(LZMA,
|
|
NCompress::NLzma::CDecoder(),
|
|
NCompress::NLzma::CEncoder(),
|
|
0x30101,
|
|
"LZMA")
|