• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // LzmaRegister.cpp
2 
3 #include "StdAfx.h"
4 
5 #include "../Common/RegisterCodec.h"
6 
7 #include "LzmaDecoder.h"
8 
9 #ifndef EXTRACT_ONLY
10 #include "LzmaEncoder.h"
11 #endif
12 
13 namespace NCompress {
14 namespace NLzma {
15 
16 REGISTER_CODEC_E(LZMA,
17     CDecoder(),
18     CEncoder(),
19     0x30101,
20     "LZMA")
21 
22 }}
23