Add Fast LZMA2 codec dll build; Fix 32-bit warnings

This commit is contained in:
conor42
2018-11-07 14:34:04 +10:00
parent ab10047253
commit 296c91d212
16 changed files with 111 additions and 18 deletions

View 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")