mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 22:11:35 -06:00
Add Fast LZMA2 codec dll build; Fix 32-bit warnings
This commit is contained in:
18
CPP/7zip/Compress/FastLzma2Register.cpp
Normal file
18
CPP/7zip/Compress/FastLzma2Register.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
// FastLzma2Register.cpp
|
||||
|
||||
#include "StdAfx.h"
|
||||
|
||||
#include "../Common/RegisterCodec.h"
|
||||
|
||||
#include "Lzma2Decoder.h"
|
||||
|
||||
#ifndef EXTRACT_ONLY
|
||||
#include "Lzma2Encoder.h"
|
||||
#endif
|
||||
|
||||
REGISTER_CODEC_E(
|
||||
FLZMA2,
|
||||
NCompress::NLzma2::CDecoder(),
|
||||
NCompress::NLzma2::CFastEncoder(),
|
||||
0x21,
|
||||
"FLZMA2")
|
||||
Reference in New Issue
Block a user