1 // LzmaRegister.cpp
2 
3 #include "StdAfx.h"
4 
5 #include "../Common/RegisterCodec.h"
6 
7 #include "LzmaDecoder.h"
8 
CreateCodec()9 static void *CreateCodec() { return (void *)(ICompressCoder *)(new NCompress::NLzma::CDecoder); }
10 #ifndef EXTRACT_ONLY
11 #include "LzmaEncoder.h"
CreateCodecOut()12 static void *CreateCodecOut() { return (void *)(ICompressCoder *)(new NCompress::NLzma::CEncoder);  }
13 #else
14 #define CreateCodecOut 0
15 #endif
16 
17 static CCodecInfo g_CodecInfo =
18   { CreateCodec, CreateCodecOut, 0x030101, L"LZMA", 1, false };
19 
20 REGISTER_CODEC(LZMA)
21