Index: third_party/lzma/v4_65/files/CPP/7zip/Compress/LzmaRegister.cpp |
diff --git a/third_party/lzma/v4_65/files/CPP/7zip/Compress/LzmaRegister.cpp b/third_party/lzma/v4_65/files/CPP/7zip/Compress/LzmaRegister.cpp |
deleted file mode 100644 |
index 96ed0baed062ab97054bacd39f3f2639f26f3edc..0000000000000000000000000000000000000000 |
--- a/third_party/lzma/v4_65/files/CPP/7zip/Compress/LzmaRegister.cpp |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-// LzmaRegister.cpp |
- |
-#include "StdAfx.h" |
- |
-#include "../Common/RegisterCodec.h" |
- |
-#include "LzmaDecoder.h" |
- |
-static void *CreateCodec() { return (void *)(ICompressCoder *)(new NCompress::NLzma::CDecoder); } |
-#ifndef EXTRACT_ONLY |
-#include "LzmaEncoder.h" |
-static void *CreateCodecOut() { return (void *)(ICompressCoder *)(new NCompress::NLzma::CEncoder); } |
-#else |
-#define CreateCodecOut 0 |
-#endif |
- |
-static CCodecInfo g_CodecInfo = |
- { CreateCodec, CreateCodecOut, 0x030101, L"LZMA", 1, false }; |
- |
-REGISTER_CODEC(LZMA) |