Browse Source

Move LZMA SDK files into Components. Updated references in own files but unable to test since I cant compile this.

Martijn Laan 1 year ago
parent
commit
5e98928328

+ 0 - 0
Projects/Src/Lzma2/C/Alloc.c → Components/Lzma2/Alloc.c


+ 0 - 0
Projects/Src/Lzma2/C/Alloc.h → Components/Lzma2/Alloc.h


+ 0 - 0
Projects/Src/Lzma2/C/LzFind.c → Components/Lzma2/LzFind.c


+ 0 - 0
Projects/Src/Lzma2/C/LzFind.h → Components/Lzma2/LzFind.h


+ 0 - 0
Projects/Src/Lzma2/C/LzFindMt.c → Components/Lzma2/LzFindMt.c


+ 0 - 0
Projects/Src/Lzma2/C/LzFindMt.h → Components/Lzma2/LzFindMt.h


+ 0 - 0
Projects/Src/Lzma2/C/LzHash.h → Components/Lzma2/LzHash.h


+ 0 - 0
Projects/Src/Lzma2/C/Lzma2Dec.c → Components/Lzma2/Lzma2Dec.c


+ 0 - 0
Projects/Src/Lzma2/C/Lzma2Dec.h → Components/Lzma2/Lzma2Dec.h


+ 0 - 0
Projects/Src/Lzma2/C/Lzma2Enc.c → Components/Lzma2/Lzma2Enc.c


+ 0 - 0
Projects/Src/Lzma2/C/Lzma2Enc.h → Components/Lzma2/Lzma2Enc.h


+ 0 - 0
Projects/Src/Lzma2/C/LzmaDec.c → Components/Lzma2/LzmaDec.c


+ 0 - 0
Projects/Src/Lzma2/C/LzmaDec.h → Components/Lzma2/LzmaDec.h


+ 0 - 0
Projects/Src/Lzma2/C/LzmaEnc.c → Components/Lzma2/LzmaEnc.c


+ 0 - 0
Projects/Src/Lzma2/C/LzmaEnc.h → Components/Lzma2/LzmaEnc.h


+ 0 - 0
Projects/Src/Lzma2/C/MtCoder.c → Components/Lzma2/MtCoder.c


+ 0 - 0
Projects/Src/Lzma2/C/MtCoder.h → Components/Lzma2/MtCoder.h


+ 0 - 0
Projects/Src/Lzma2/C/Threads.c → Components/Lzma2/Threads.c


+ 0 - 0
Projects/Src/Lzma2/C/Threads.h → Components/Lzma2/Threads.h


+ 0 - 0
Projects/Src/Lzma2/C/Types.h → Components/Lzma2/Types.h


+ 1 - 1
Projects/Src/Lzma2/Decoder/ISLzma2Dec.c

@@ -5,7 +5,7 @@
   Lzma2Dec.c + additional helper functions used by LZMADecomp.pas
 */
 
-#include "../C/Lzma2Dec.c"
+#include "../../../../Components/Lzma2/Lzma2Dec.c"
 
 SRes IS_Lzma2Dec_Init(CLzma2Dec *state, size_t stateSize, Byte prop,
 	ISzAlloc *alloc)

+ 1 - 1
Projects/Src/Lzma2/Decoder/ISLzmaDec.c

@@ -5,7 +5,7 @@
   LzmaDec.c + additional helper functions used by LZMADecomp.pas
 */
 
-#include "../C/LzmaDec.c"
+#include "../../../../Components/Lzma2/LzmaDec.c"
 
 SRes IS_LzmaDec_Init(CLzmaDec *state, size_t stateSize, const Byte *props,
 	unsigned propsSize, ISzAlloc *alloc)

+ 3 - 3
Projects/Src/Lzma2/Encoder/islzma.c

@@ -5,9 +5,9 @@
 
 #include <stddef.h>
 #include <windows.h>
-#include "../C/Alloc.h"
-#include "../C/LzmaEnc.h"
-#include "../C/Lzma2Enc.h"
+#include "../../../../Components/Lzma2/Alloc.h"
+#include "../../../../Components/Lzma2/LzmaEnc.h"
+#include "../../../../Components/Lzma2/Lzma2Enc.h"
 #include "islzma.h"
 
 // Private definition of a handle; callers of the DLL should use void*

+ 16 - 16
Projects/Src/Lzma2/Encoder/islzma.vcproj

@@ -180,67 +180,67 @@
 			Name="SDK"
 			>
 			<File
-				RelativePath="..\C\Alloc.c"
+				RelativePath="..\..\..\..\Components\Lzma2\Alloc.c"
 				>
 			</File>
 			<File
-				RelativePath="..\C\Alloc.h"
+				RelativePath="..\..\..\..\Components\Lzma2\Alloc.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\LzFind.c"
+				RelativePath="..\..\..\..\Components\Lzma2\LzFind.c"
 				>
 			</File>
 			<File
-				RelativePath="..\C\LzFind.h"
+				RelativePath="..\..\..\..\Components\Lzma2\LzFind.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\LzFindMt.c"
+				RelativePath="..\..\..\..\Components\Lzma2\LzFindMt.c"
 				>
 			</File>
 			<File
-				RelativePath="..\C\LzFindMt.h"
+				RelativePath="..\..\..\..\Components\Lzma2\LzFindMt.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\LzHash.h"
+				RelativePath="..\..\..\..\Components\Lzma2\LzHash.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\Lzma2Enc.c"
+				RelativePath="..\..\..\..\Components\Lzma2\Lzma2Enc.c"
 				>
 			</File>
 			<File
-				RelativePath="..\C\Lzma2Enc.h"
+				RelativePath="..\..\..\..\Components\Lzma2\Lzma2Enc.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\LzmaEnc.c"
+				RelativePath="..\..\..\..\Components\Lzma2\LzmaEnc.c"
 				>
 			</File>
 			<File
-				RelativePath="..\C\LzmaEnc.h"
+				RelativePath="..\..\..\..\Components\Lzma2\LzmaEnc.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\MtCoder.c"
+				RelativePath="..\..\..\..\Components\Lzma2\MtCoder.c"
 				>
 			</File>
 			<File
-				RelativePath="..\C\MtCoder.h"
+				RelativePath="..\..\..\..\Components\Lzma2\MtCoder.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\Threads.c"
+				RelativePath="..\..\..\..\Components\Lzma2\Threads.c"
 				>
 			</File>
 			<File
-				RelativePath="..\C\Threads.h"
+				RelativePath="..\..\..\..\Components\Lzma2\Threads.h"
 				>
 			</File>
 			<File
-				RelativePath="..\C\Types.h"
+				RelativePath="..\..\..\..\Components\Lzma2\Types.h"
 				>
 			</File>
 		</Filter>

+ 1 - 1
Projects/Src/Lzma2/Encoder/islzma_exe.c

@@ -18,7 +18,7 @@
 
 #include <windows.h>
 #include <shlwapi.h>
-#include "../C/Types.h"
+#include "../../../../Components/Lzma2/Types.h"
 #include "islzma.h"
 
 #define ISLZMA_EXE_VERSION 101