├── src ├── lzma │ ├── .built │ ├── .unpacked │ ├── C │ │ ├── 7zip │ │ │ ├── Compress │ │ │ │ ├── LZMA_Alone │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── LzmaBench.h │ │ │ │ ├── LZ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── HashChain │ │ │ │ │ │ ├── HC2.h │ │ │ │ │ │ └── HC3.h │ │ │ │ │ └── BinTree │ │ │ │ │ │ └── BinTree2.h │ │ │ │ ├── RangeCoder │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── LZMA │ │ │ │ │ └── StdAfx.h │ │ │ │ └── Branch │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── ARM.h │ │ │ │ │ ├── PPC.h │ │ │ │ │ ├── IA64.h │ │ │ │ │ ├── SPARC.h │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ └── BranchARMThumb.h │ │ │ ├── Archive │ │ │ │ └── 7z_C │ │ │ │ │ └── 7zHeader.c │ │ │ └── Common │ │ │ │ └── StdAfx.h │ │ ├── Common │ │ │ ├── StdAfx.h │ │ │ ├── MyInitGuid.h │ │ │ └── NewHandler.h │ │ └── Windows │ │ │ └── StdAfx.h │ └── Java │ │ └── SevenZip │ │ └── Compression │ │ └── ICodeProgress.java ├── cramfsswap │ └── debian │ │ ├── compat │ │ ├── docs │ │ └── dirs ├── uncramfs │ ├── VERSION │ └── USE_CRAMFSCK_TO_EXTRACT_INSTEAD_SEE_CRAMFS-2.X_FOLDER ├── others │ ├── squashfs-3.0-e2100 │ │ └── lzma │ │ │ ├── .built │ │ │ ├── .unpacked │ │ │ ├── C │ │ │ ├── 7zip │ │ │ │ ├── Compress │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── HashChain │ │ │ │ │ │ │ └── HC2.h │ │ │ │ │ │ └── BinTree │ │ │ │ │ │ │ └── BinTree2.h │ │ │ │ │ ├── RangeCoder │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Branch │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ │ └── BranchARMThumb.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z_C │ │ │ │ │ │ └── 7zHeader.c │ │ │ │ └── Common │ │ │ │ │ └── StdAfx.h │ │ │ ├── Common │ │ │ │ ├── StdAfx.h │ │ │ │ ├── MyInitGuid.h │ │ │ │ └── NewHandler.h │ │ │ └── Windows │ │ │ │ └── StdAfx.h │ │ │ └── Java │ │ │ └── SevenZip │ │ │ └── Compression │ │ │ └── ICodeProgress.java │ ├── squashfs-4.2 │ │ ├── lzma-4.65 │ │ │ ├── .built │ │ │ ├── .built_check │ │ │ ├── .configured │ │ │ ├── .prepared1a23cc84ca172080ca2c2f332cb31052 │ │ │ ├── .prepared1a23cc84ca172080ca2c2f332cb31052_check │ │ │ ├── C │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ └── resource.rc │ │ │ │ ├── LzmaUtil │ │ │ │ │ └── lzma │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ └── 7zHeader.c │ │ │ │ └── 7zVersion.h │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Icons │ │ │ │ │ │ │ └── 7z.ico │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Console │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ │ └── PropIDUtils.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── lzma │ │ │ │ │ │ │ └── lzma_alone │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ └── FilePathAutoRename.h │ │ │ │ ├── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Types.h │ │ │ │ │ └── CRC.cpp │ │ │ │ └── Windows │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ ├── FileMapping.cpp │ │ │ │ │ └── MemoryLock.h │ │ │ ├── history.txt │ │ │ └── Java │ │ │ │ └── SevenZip │ │ │ │ └── ICodeProgress.java │ │ └── Makefile │ ├── squashfs-3.3-grml-lzma │ │ ├── debian │ │ │ ├── compat │ │ │ ├── squashfs-lzma-tools.dirs │ │ │ ├── squashfs-lzma-source.links │ │ │ ├── squashfs-lzma-tools.manpages │ │ │ ├── squashfs-lzma-tools.install │ │ │ ├── squashfs-lzma-source.docs │ │ │ ├── doc │ │ │ │ └── po │ │ │ │ │ ├── mksquashfs.fr.add │ │ │ │ │ └── po4a.cfg │ │ │ └── watch │ │ ├── .topdeps │ │ ├── lzma │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── Console │ │ │ │ │ │ │ ├── afxres.h │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ │ └── SetProperties.h │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Archive.def │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── Copy │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Branch │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ │ └── ARMThumb.h │ │ │ │ │ │ ├── ByteSwap │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── LZ │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ └── FilePathAutoRename.h │ │ │ │ ├── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── CRC.cpp │ │ │ │ └── Windows │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ └── FileMapping.cpp │ │ │ ├── C │ │ │ │ ├── Compress │ │ │ │ │ ├── Lzma │ │ │ │ │ │ └── testflags.c │ │ │ │ │ └── Branch │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ │ └── BranchARMThumb.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z │ │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ │ └── 7zMethodID.c │ │ │ │ └── Sort.h │ │ │ ├── lzma.exe │ │ │ ├── history.txt │ │ │ └── Java │ │ │ │ └── SevenZip │ │ │ │ └── ICodeProgress.java │ │ ├── .tmpdeps │ │ └── .topmsg │ ├── squashfs-3.4-cisco │ │ ├── lzma │ │ │ ├── Makefile │ │ │ ├── C │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ └── resource.rc │ │ │ │ └── Archive │ │ │ │ │ └── 7z │ │ │ │ │ └── 7zHeader.c │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Icons │ │ │ │ │ │ │ └── 7z.ico │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Console │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ │ └── PropIDUtils.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ └── FilePathAutoRename.h │ │ │ │ ├── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ └── Types.h │ │ │ │ └── Windows │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ └── FileMapping.cpp │ │ │ ├── lzma.exe │ │ │ ├── history.txt │ │ │ ├── lzma465.tar.bz2 │ │ │ └── Java │ │ │ │ └── SevenZip │ │ │ │ └── ICodeProgress.java │ │ └── Makefile │ ├── squashfs-2.2-r2-7z │ │ ├── p7zip │ │ │ ├── include_windows │ │ │ │ └── io.h │ │ │ ├── Common │ │ │ │ ├── NewHandler.h │ │ │ │ ├── MyInitGuid.h │ │ │ │ └── Random.h │ │ │ └── 7zip │ │ │ │ ├── Compress │ │ │ │ └── LZ │ │ │ │ │ ├── HashChain │ │ │ │ │ ├── HC2.h │ │ │ │ │ └── HC3.h │ │ │ │ │ └── BinTree │ │ │ │ │ └── BinTree2.h │ │ │ │ ├── Common │ │ │ │ └── FilePathAutoRename.h │ │ │ │ ├── Archive │ │ │ │ ├── Common │ │ │ │ │ └── CodecsPath.h │ │ │ │ └── RPM │ │ │ │ │ └── RpmIn.h │ │ │ │ └── UI │ │ │ │ └── Common │ │ │ │ ├── PropIDUtils.h │ │ │ │ └── DefaultName.h │ │ └── README │ ├── squashfs-3.2-r2-lzma │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── UI │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── afxres.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ └── PropIDUtils.h │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Archive.def │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Compress │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ └── ARMThumb.h │ │ │ │ │ ├── Copy │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── ByteSwap │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ └── StdAfx.h │ │ │ │ └── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── MethodId.h │ │ │ │ │ └── FilePathAutoRename.h │ │ │ ├── Common │ │ │ │ ├── StdAfx.h │ │ │ │ └── CRC.cpp │ │ │ └── Windows │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Synchronization.cpp │ │ │ │ ├── FileMapping.cpp │ │ │ │ └── MemoryLock.h │ │ └── C │ │ │ ├── Compress │ │ │ ├── Lzma │ │ │ │ └── testflags.c │ │ │ └── Branch │ │ │ │ ├── BranchARM.h │ │ │ │ ├── BranchPPC.h │ │ │ │ ├── BranchIA64.h │ │ │ │ ├── BranchSPARC.h │ │ │ │ └── BranchARMThumb.h │ │ │ ├── Archive │ │ │ └── 7z │ │ │ │ ├── 7zHeader.c │ │ │ │ ├── 7zMethodID.h │ │ │ │ └── 7zMethodID.c │ │ │ └── Sort.h │ ├── squashfs-3.3-lzma │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── UI │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── afxres.h │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ └── PropIDUtils.h │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ ├── 7z.ico │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Archive.def │ │ │ │ ├── Compress │ │ │ │ │ ├── Copy │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ └── ARMThumb.h │ │ │ │ │ ├── ByteSwap │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── RangeCoder │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ └── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── MethodId.h │ │ │ │ │ └── FilePathAutoRename.h │ │ │ ├── Common │ │ │ │ ├── StdAfx.h │ │ │ │ └── CRC.cpp │ │ │ └── Windows │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Synchronization.cpp │ │ │ │ ├── FileMapping.cpp │ │ │ │ └── MemoryLock.h │ │ ├── C │ │ │ ├── Compress │ │ │ │ ├── Lzma │ │ │ │ │ └── testflags.c │ │ │ │ └── Branch │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ ├── BranchSPARC.h │ │ │ │ │ └── BranchARMThumb.h │ │ │ ├── Archive │ │ │ │ └── 7z │ │ │ │ │ ├── 7zHeader.c │ │ │ │ │ ├── 7zMethodID.h │ │ │ │ │ └── 7zMethodID.c │ │ │ └── Sort.h │ │ └── unuse │ │ │ └── Java │ │ │ └── SevenZip │ │ │ └── ICodeProgress.java │ ├── squashfs-3.4-nb4 │ │ ├── mksquashfs │ │ ├── unsquashfs-lzma │ │ ├── lzma465 │ │ │ ├── C │ │ │ │ ├── LzmaLib │ │ │ │ │ ├── LzmaLib.def │ │ │ │ │ └── resource.rc │ │ │ │ └── Archive │ │ │ │ │ └── 7z │ │ │ │ │ └── 7zHeader.c │ │ │ ├── CPP │ │ │ │ ├── 7zip │ │ │ │ │ ├── Archive │ │ │ │ │ │ ├── 7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Icons │ │ │ │ │ │ │ └── 7z.ico │ │ │ │ │ │ ├── Lzma │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Split │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Archive.def │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── UI │ │ │ │ │ │ ├── Client7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Console │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Common │ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ │ └── PropIDUtils.h │ │ │ │ │ ├── Bundles │ │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Compress │ │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── MethodId.h │ │ │ │ │ │ └── FilePathAutoRename.h │ │ │ │ ├── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── CRC.cpp │ │ │ │ │ └── Types.h │ │ │ │ └── Windows │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── Synchronization.cpp │ │ │ │ │ └── FileMapping.cpp │ │ │ ├── lzma.exe │ │ │ ├── history.txt │ │ │ └── Java │ │ │ │ └── SevenZip │ │ │ │ └── ICodeProgress.java │ │ └── README.txt │ ├── squashfs-4.0-lzma │ │ └── lzma │ │ │ ├── C │ │ │ ├── LzmaLib │ │ │ │ ├── LzmaLib.def │ │ │ │ └── resource.rc │ │ │ └── Archive │ │ │ │ └── 7z │ │ │ │ └── 7zHeader.c │ │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Lzma │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Split │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Archive.def │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── UI │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ └── PropIDUtils.h │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Compress │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── StdAfx.h │ │ │ │ └── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── MethodId.h │ │ │ │ │ └── FilePathAutoRename.h │ │ │ ├── Common │ │ │ │ ├── StdAfx.h │ │ │ │ ├── CRC.cpp │ │ │ │ └── Types.h │ │ │ └── Windows │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Synchronization.cpp │ │ │ │ ├── FileMapping.cpp │ │ │ │ └── MemoryLock.h │ │ │ ├── history.txt │ │ │ └── Java │ │ │ └── SevenZip │ │ │ └── ICodeProgress.java │ ├── squashfs-4.0-realtek │ │ └── lzma │ │ │ ├── CPP │ │ │ ├── 7zip │ │ │ │ ├── Archive │ │ │ │ │ ├── 7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── 7zCompressionMode.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Lzma │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Split │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Archive.def │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── UI │ │ │ │ │ ├── Client7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Common │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── WorkDir.h │ │ │ │ │ │ ├── SortUtils.h │ │ │ │ │ │ ├── Property.h │ │ │ │ │ │ ├── ExtractingFilePath.h │ │ │ │ │ │ ├── ArchiveName.h │ │ │ │ │ │ ├── SetProperties.h │ │ │ │ │ │ └── PropIDUtils.h │ │ │ │ ├── Bundles │ │ │ │ │ ├── Alone7z │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Format7zR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── Format7zExtractR │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ ├── resource.rc │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Compress │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ └── StdAfx.h │ │ │ │ └── Common │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── MethodId.h │ │ │ │ │ └── FilePathAutoRename.h │ │ │ ├── Common │ │ │ │ ├── StdAfx.h │ │ │ │ ├── CRC.cpp │ │ │ │ └── Types.h │ │ │ └── Windows │ │ │ │ ├── StdAfx.h │ │ │ │ ├── Synchronization.cpp │ │ │ │ └── FileMapping.cpp │ │ │ ├── C │ │ │ ├── LzmaLib │ │ │ │ ├── LzmaLib.def │ │ │ │ └── resource.rc │ │ │ └── Archive │ │ │ │ └── 7z │ │ │ │ └── 7zHeader.c │ │ │ ├── history.txt │ │ │ └── Java │ │ │ └── SevenZip │ │ │ └── ICodeProgress.java │ ├── squashfs-3.2-r2-hg612-lzma │ │ └── lzma443 │ │ │ ├── C │ │ │ ├── 7zip │ │ │ │ ├── Compress │ │ │ │ │ ├── LZMA_Alone │ │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── LZ │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── HashChain │ │ │ │ │ │ │ ├── HCMain.h │ │ │ │ │ │ │ └── HC2.h │ │ │ │ │ │ └── BinTree │ │ │ │ │ │ │ └── BinTree2.h │ │ │ │ │ ├── LZMA_C │ │ │ │ │ │ └── testflags.c │ │ │ │ │ ├── RangeCoder │ │ │ │ │ │ └── StdAfx.h │ │ │ │ │ ├── Branch │ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ │ ├── ARM.h │ │ │ │ │ │ ├── IA64.h │ │ │ │ │ │ ├── PPC.h │ │ │ │ │ │ ├── SPARC.h │ │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ │ └── BranchSPARC.h │ │ │ │ │ └── LZMA │ │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Archive │ │ │ │ │ └── 7z_C │ │ │ │ │ │ └── 7zHeader.c │ │ │ │ └── Common │ │ │ │ │ └── StdAfx.h │ │ │ ├── Common │ │ │ │ ├── StdAfx.h │ │ │ │ └── MyInitGuid.h │ │ │ └── Windows │ │ │ │ └── StdAfx.h │ │ │ └── Java │ │ │ └── SevenZip │ │ │ ├── ICodeProgress.java │ │ │ └── Compression │ │ │ └── ICodeProgress.java │ ├── squashfs-hg55x-bin │ │ ├── unsquashfs │ │ └── README │ ├── squashfs-3.2-r2-rtn12 │ │ └── sqmagic.h │ └── squashfs-2.0-nb4 │ │ ├── nb4-unsquashfs │ │ ├── README │ │ └── brcm-lzma │ │ │ └── Makefile │ │ ├── nb4-mksquashfs │ │ └── lzma │ │ │ ├── decompress │ │ │ └── Makefile │ │ │ └── compress │ │ │ ├── BinTree3Z.h │ │ │ ├── BinTree2.h │ │ │ ├── BinTree3ZMain.h │ │ │ └── BinTree2Main.h │ │ └── Makefile ├── uncramfs-lzma │ ├── VERSION │ └── lzma-rg │ │ ├── SRC │ │ ├── .cvsignore │ │ ├── 7zip │ │ │ ├── Compress │ │ │ │ ├── LZMA_Alone │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── Makefile.rg │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── LzmaBench.h │ │ │ │ ├── LZ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ └── Makefile │ │ │ │ ├── Branch │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── ARM.h │ │ │ │ │ ├── PPC.h │ │ │ │ │ ├── IA64.h │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ └── BranchARMThumb.h │ │ │ │ ├── RangeCoder │ │ │ │ │ ├── Makefile │ │ │ │ │ └── StdAfx.h │ │ │ │ └── LZMA │ │ │ │ │ ├── Makefile │ │ │ │ │ └── StdAfx.h │ │ │ ├── Makefile │ │ │ └── Common │ │ │ │ ├── Makefile │ │ │ │ └── StdAfx.h │ │ ├── Common │ │ │ ├── StdAfx.h │ │ │ ├── NewHandler.h │ │ │ └── Makefile │ │ └── Windows │ │ │ └── StdAfx.h │ │ └── Makefile ├── squashfs-3.0-lzma-damn-small-variant │ └── lzma │ │ ├── .built │ │ ├── .unpacked │ │ ├── C │ │ ├── 7zip │ │ │ ├── Compress │ │ │ │ ├── LZMA_Alone │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── LZ │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── HashChain │ │ │ │ │ │ └── HC2.h │ │ │ │ │ └── BinTree │ │ │ │ │ │ └── BinTree2.h │ │ │ │ ├── RangeCoder │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── Branch │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── ARM.h │ │ │ │ │ ├── IA64.h │ │ │ │ │ ├── PPC.h │ │ │ │ │ ├── SPARC.h │ │ │ │ │ ├── ARMThumb.h │ │ │ │ │ ├── BranchARM.h │ │ │ │ │ ├── BranchIA64.h │ │ │ │ │ ├── BranchPPC.h │ │ │ │ │ └── BranchSPARC.h │ │ │ │ └── LZMA │ │ │ │ │ └── StdAfx.h │ │ │ ├── Archive │ │ │ │ └── 7z_C │ │ │ │ │ └── 7zHeader.c │ │ │ └── Common │ │ │ │ └── StdAfx.h │ │ ├── Common │ │ │ ├── StdAfx.h │ │ │ └── MyInitGuid.h │ │ └── Windows │ │ │ └── StdAfx.h │ │ └── Java │ │ └── SevenZip │ │ └── Compression │ │ └── ICodeProgress.java ├── firmware-tools │ └── readme.txt ├── jffs2 │ ├── mkfs.jffs2 │ └── Makefile ├── squashfs-2.1-r2 │ └── README ├── bff │ └── Makefile ├── owfs │ └── Makefile ├── crcalc │ └── crc.h ├── cramfs-2.x │ └── GNUmakefile ├── mountcp │ └── Makefile ├── webcomp-tools │ └── Makefile └── wrt_vx_imgtool │ └── Makefile ├── ipk_template ├── conffiles ├── debian_binary └── control ├── firmware_mod_kit_version.txt ├── cleanup.sh └── README.md /src/lzma/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lzma/.unpacked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipk_template/conffiles: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /firmware_mod_kit_version.txt: -------------------------------------------------------------------------------- 1 | 0.99 2 | -------------------------------------------------------------------------------- /ipk_template/debian_binary: -------------------------------------------------------------------------------- 1 | 2.0 2 | -------------------------------------------------------------------------------- /src/cramfsswap/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /src/cramfsswap/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /src/uncramfs/VERSION: -------------------------------------------------------------------------------- 1 | VERSION="0.7" 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/.unpacked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.built_check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.configured: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/VERSION: -------------------------------------------------------------------------------- 1 | VERSION="0.7rg" 2 | -------------------------------------------------------------------------------- /src/cramfsswap/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | usr/sbin 3 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/.built: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/.cvsignore: -------------------------------------------------------------------------------- 1 | lzma 2 | -------------------------------------------------------------------------------- /cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . ./shared.inc 3 | Cleanup 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/.topdeps: -------------------------------------------------------------------------------- 1 | squashfs 2 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/.unpacked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/Makefile: -------------------------------------------------------------------------------- 1 | ../../Makefile.src -------------------------------------------------------------------------------- /src/others/squashfs-2.2-r2-7z/p7zip/include_windows/io.h: -------------------------------------------------------------------------------- 1 | 2 | /* */ 3 | 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/squashfs-lzma-tools.dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.prepared1a23cc84ca172080ca2c2f332cb31052: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/uncramfs/USE_CRAMFSCK_TO_EXTRACT_INSTEAD_SEE_CRAMFS-2.X_FOLDER: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/.prepared1a23cc84ca172080ca2c2f332cb31052_check: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Console/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Console/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/mksquashfs: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./mksquashfs-lzma -nolzma $@ 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/unsquashfs-lzma: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./unsquashfs -lzma $@ 4 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Console/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/firmware-tools/readme.txt: -------------------------------------------------------------------------------- 1 | This is a collection of firmware packaging and obfuscation utilities. 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/.tmpdeps: -------------------------------------------------------------------------------- 1 | t/squashfs-lzma 2 | t/lzma 3 | t/sqlzma 4 | t/ksquashfs 5 | -------------------------------------------------------------------------------- /src/jffs2/mkfs.jffs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/jffs2/mkfs.jffs2 -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Copy/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/LZMA/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | LzmaCompress 3 | LzmaUncompress 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Branch/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Copy/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/LZMA/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Branch/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/ByteSwap/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | LzmaCompress 3 | LzmaUncompress 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | LzmaCompress 3 | LzmaUncompress 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | LzmaCompress 3 | LzmaUncompress 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/ByteSwap/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Archive/7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Copy/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/LZMA/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Client7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Console/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | LzmaCompress 3 | LzmaUncompress 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Branch/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | // StdAfx.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Compress/Lzma/testflags.c: -------------------------------------------------------------------------------- 1 | #ifdef _LZMA_PROB32 2 | -D_LZMA_PROB32 3 | #else 4 | -U_LZMA_PROB32 5 | #endif 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Compress/Lzma/testflags.c: -------------------------------------------------------------------------------- 1 | #ifdef _LZMA_PROB32 2 | -D_LZMA_PROB32 3 | #else 4 | -U_LZMA_PROB32 5 | #endif 6 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-hg55x-bin/unsquashfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-hg55x-bin/unsquashfs -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-rtn12/sqmagic.h: -------------------------------------------------------------------------------- 1 | #define SQUASHFS_MAGIC_LZMA 0x71736873 2 | #define SQUASHFS_MAGIC_LZMA_SWAP 0x73687371 3 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/squashfs-lzma-source.links: -------------------------------------------------------------------------------- 1 | /usr/share/modass/packages/default.sh /usr/share/modass/overrides/squashfs-source 2 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/C/Compress/Lzma/testflags.c: -------------------------------------------------------------------------------- 1 | #ifdef _LZMA_PROB32 2 | -D_LZMA_PROB32 3 | #else 4 | -U_LZMA_PROB32 5 | #endif 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.4-cisco/lzma/lzma.exe -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.4-nb4/lzma465/lzma.exe -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Makefile: -------------------------------------------------------------------------------- 1 | RGSRC=../../../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | OBJS=lzma_encode.o 5 | 6 | include $(LZMAMK) 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/squashfs-lzma-tools.manpages: -------------------------------------------------------------------------------- 1 | debian/doc/mksquashfs.1 2 | debian/doc/mksquashfs.fr.1 3 | debian/doc/unsquashfs.1 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.4-cisco/lzma/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-4.0-lzma/lzma/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-4.2/lzma-4.65/history.txt -------------------------------------------------------------------------------- /src/squashfs-2.1-r2/README: -------------------------------------------------------------------------------- 1 | Special thanks to FatMobile for getting this working and providing sources! 2 | 3 | http://pastebin.com/raw.php?i=7m92B1M8 4 | -------------------------------------------------------------------------------- /src/bff/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc bff_huffman_decompress.c -o bff_huffman_decompress 3 | 4 | clean: 5 | rm -f bff_huffman_decompress 6 | 7 | distclean: clean 8 | -------------------------------------------------------------------------------- /src/jffs2/Makefile: -------------------------------------------------------------------------------- 1 | CC=gcc 2 | 3 | sunjffs2: 4 | $(CC) -Wall sunjffs2.c -o sunjffs2 5 | 6 | clean: 7 | rm -f sunjffs2 8 | 9 | distclean: clean 10 | -------------------------------------------------------------------------------- /src/others/squashfs-2.0-nb4/nb4-unsquashfs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-2.0-nb4/nb4-unsquashfs/README -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZMA_C/testflags.c: -------------------------------------------------------------------------------- 1 | #ifdef _LZMA_PROB32 2 | -D_LZMA_PROB32 3 | #else 4 | -U_LZMA_PROB32 5 | #endif 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/lzma.exe -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.4-nb4/lzma465/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-4.0-realtek/lzma/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/LzmaLib/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../CPP/7zip/MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("LZMA library", "LZMA") 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/LzmaUtil/lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-4.2/lzma-4.65/C/LzmaUtil/lzma -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/LZ/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/history.txt -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/LzmaLib/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../CPP/7zip/MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("LZMA library", "LZMA") 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/lzma465.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.4-cisco/lzma/lzma465.tar.bz2 -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/LzmaLib/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../CPP/7zip/MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("LZMA library", "LZMA") 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/LzmaLib/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../CPP/7zip/MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("LZMA library", "LZMA") 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/LzmaLib/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../CPP/7zip/MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("LZMA library", "LZMA") 4 | 5 | -------------------------------------------------------------------------------- /src/others/squashfs-2.0-nb4/nb4-mksquashfs/lzma/decompress/Makefile: -------------------------------------------------------------------------------- 1 | 2 | BSPOBJS += \ 3 | 7zlzma.o \ 4 | LZMADecoder.o \ 5 | IInOutStreams.o \ 6 | 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/squashfs-lzma-tools.install: -------------------------------------------------------------------------------- 1 | squashfs3.3/squashfs-tools/mksquashfs /usr/bin 2 | squashfs3.3/squashfs-tools/unsquashfs /usr/bin 3 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-2.2-r2-7z/README: -------------------------------------------------------------------------------- 1 | Thanks to FatMobile for all the effort in finding this source and getting it working! 2 | 3 | http://pastebin.com/raw.php?i=7m92B1M8 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Archive/7z/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.3-lzma/CPP/7zip/Archive/7z/7z.ico -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/owfs/Makefile: -------------------------------------------------------------------------------- 1 | CC=gcc 2 | 3 | all: unowfs 4 | 5 | unowfs: 6 | $(CC) -Wall unowfs.c -o unowfs 7 | 8 | clean: 9 | rm -f unowfs 10 | 11 | distclean: clean 12 | -------------------------------------------------------------------------------- /src/crcalc/crc.h: -------------------------------------------------------------------------------- 1 | #ifndef _CRC_H_ 2 | #define _CRC_H_ 3 | 4 | #include 5 | #include 6 | 7 | uint32_t crc32(char *buf, size_t len); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Archive/7z_C/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c */ 2 | 3 | #include "7zHeader.h" 4 | 5 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 6 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Archive/7z/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.2-r2-lzma/CPP/7zip/Archive/7z/7z.ico -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Alone7z/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_APP("7-Zip Standalone Console", "7za") 4 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/LZ/Makefile: -------------------------------------------------------------------------------- 1 | RGSRC=../../../../../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | OBJS=LZInWindow.o LZOutWindow.o 5 | 6 | include $(LZMAMK) 7 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/RangeCoder/Makefile: -------------------------------------------------------------------------------- 1 | RGSRC=../../../../../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | OBJS=RangeCoderBit.o 5 | 6 | include $(LZMAMK) 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/squashfs-lzma-source.docs: -------------------------------------------------------------------------------- 1 | squashfs3.3/ACKNOWLEDGEMENTS 2 | squashfs3.3/PERFORMANCE.README 3 | squashfs3.3/README 4 | squashfs3.3/README-3.3 5 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Common/Makefile: -------------------------------------------------------------------------------- 1 | RGSRC=../../../../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | OBJS=InBuffer.o OutBuffer.o FileStreams.o 5 | 6 | include $(LZMAMK) 7 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/LZMA/Makefile: -------------------------------------------------------------------------------- 1 | RGSRC=../../../../../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | OBJS=LZMADecoder.o LZMAEncoder.o 5 | 6 | include $(LZMAMK) 7 | -------------------------------------------------------------------------------- /src/lzma/C/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/lzma/Java/SevenZip/Compression/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c */ 2 | 3 | #include "7zHeader.h" 4 | 5 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/Icons/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/Icons/7z.ico -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/Icons/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/Icons/7z.ico -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/LZMA_Alone/Makefile.rg: -------------------------------------------------------------------------------- 1 | RGSRC=../../../../../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | OBJS=LzmaAlone.o LzmaBench.o 5 | 6 | include $(LZMAMK) 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c */ 2 | 3 | #include "7zHeader.h" 4 | 5 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Archive/7z/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Archive/7z/7z.ico -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/Icons/7z.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/Icons/7z.ico -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/Lzma/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/Split/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #ifdef WIN32 7 | #include 8 | #endif 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZ/HashChain/HCMain.h: -------------------------------------------------------------------------------- 1 | // HCMain.h 2 | 3 | #define _HASH_CHAIN 4 | #include "../BinTree/BinTreeMain.h" 5 | #undef _HASH_CHAIN 6 | 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Copy/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c */ 2 | 3 | #include "7zHeader.h" 4 | 5 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/ByteSwap/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Copy/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/Lzma/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Compress/LZMA_Alone/lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Compress/LZMA_Alone/lzma -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #ifdef WIN32 7 | #include 8 | #endif 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/NewHandler.h: -------------------------------------------------------------------------------- 1 | // Common/NewHandler.h 2 | 3 | #ifndef __COMMON_NEWHANDLER_H 4 | #define __COMMON_NEWHANDLER_H 5 | 6 | class CNewException {}; 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #ifdef WIN32 7 | #include 8 | #endif 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-2.2-r2-7z/p7zip/Common/NewHandler.h: -------------------------------------------------------------------------------- 1 | // Common/NewHandler.h 2 | 3 | #ifndef __COMMON_NEWHANDLER_H 4 | #define __COMMON_NEWHANDLER_H 5 | 6 | class CNewException {}; 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Archive/7z_C/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c */ 2 | 3 | #include "7zHeader.h" 4 | 5 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/ByteSwap/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/doc/po/mksquashfs.fr.add: -------------------------------------------------------------------------------- 1 | PO4A-HEADER:position=AUTEURS;mode=after;beginboundary= 2 | 3 | Traduction française : &dhusername; &dhemail;. 4 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/unuse/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/Lzma/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/Split/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/Lzma/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/Split/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/Split/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/Lzma/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/Split/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- 1 | // SPARC.h 2 | 3 | #ifndef __SPARC_H 4 | #define __SPARC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_SPARC, 0x08, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/ByteSwap/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Copy/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Compress/LZMA_Alone/lzma_alone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinquemb/firmware-mod-kit-osx/HEAD/src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Compress/LZMA_Alone/lzma_alone -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #ifdef WIN32 7 | #include 8 | #endif 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/Java/SevenZip/Compression/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Archive/7z_C/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c */ 2 | 3 | #include "7zHeader.h" 4 | 5 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/Java/SevenZip/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/7z/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Archive/7z_C/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c */ 2 | 3 | #include "7zHeader.h" 4 | 5 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 6 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/Branch/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/LZMA/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #ifdef WIN32 7 | #include 8 | #endif 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/RangeCoder/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #ifdef WIN32 7 | #include 8 | #endif 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/7z/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/UI/Client7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/LZMA_Alone/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/Java/SevenZip/Compression/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/7z/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Format7zR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Plugin", "7zr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | make -C squashfs-tools 3 | cp squashfs-tools/unsquashfs . 4 | cp squashfs-tools/mksquashfs . 5 | 6 | clean: 7 | make -C squashfs-tools clean 8 | rm -f unsquashfs mksquashfs 9 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/Java/SevenZip/Compression/ICodeProgress.java: -------------------------------------------------------------------------------- 1 | package SevenZip; 2 | 3 | public interface ICodeProgress 4 | { 5 | public void SetProgress(long inSize, long outSize); 6 | } 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/.topmsg: -------------------------------------------------------------------------------- 1 | From: Michael Gebetsroither 2 | Subject: [PATCH] t/squashfs-lzma 3 | 4 | squashfs lzma patch 5 | 6 | Signed-off-by: Michael Gebetsroither 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- 1 | // SPARC.h 2 | 3 | #ifndef __SPARC_H 4 | #define __SPARC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_SPARC, 0x08, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | // #include "MyWindows.h" 7 | #include "NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- 1 | // SPARC.h 2 | 3 | #ifndef __SPARC_H 4 | #define __SPARC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_SPARC, 0x08, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/7z/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- 1 | // SPARC.h 2 | 3 | #ifndef __SPARC_H 4 | #define __SPARC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_SPARC, 0x08, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/7z/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/Branch/ARM.h: -------------------------------------------------------------------------------- 1 | // ARM.h 2 | 3 | #ifndef __ARM_H 4 | #define __ARM_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARM, 0x05, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/cramfs-2.x/GNUmakefile: -------------------------------------------------------------------------------- 1 | CC = gcc 2 | CFLAGS = -W -Wall -O2 -g 3 | CPPFLAGS = -I. 4 | LDLIBS = -lz 5 | PROGS = mkcramfs cramfsck 6 | 7 | all: $(PROGS) 8 | 9 | distclean clean: 10 | rm -f $(PROGS) 11 | 12 | .PHONY: all clean 13 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/watch: -------------------------------------------------------------------------------- 1 | # watch control file for uscan 2 | version=3 3 | 4 | opts="uversionmangle=s/-r/r/" \ 5 | ftp://heanet.dl.sourceforge.net/s/sq/squashfs/squashfs(.*)\.tar\.gz \ 6 | debian git-import-orig 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Archive/Archive.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | CreateObject PRIVATE 3 | GetHandlerProperty PRIVATE 4 | GetNumberOfFormats PRIVATE 5 | GetHandlerProperty2 PRIVATE 6 | CreateObject PRIVATE 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- 1 | // SPARC.h 2 | 3 | #ifndef __SPARC_H 4 | #define __SPARC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_SPARC, 0x08, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/Branch/IA64.h: -------------------------------------------------------------------------------- 1 | // IA64.h 2 | 3 | #ifndef __IA64_H 4 | #define __IA64_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_IA64, 0x04, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/Branch/PPC.h: -------------------------------------------------------------------------------- 1 | // PPC.h 2 | 3 | #ifndef __PPC_H 4 | #define __PPC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_PPC_B, 0x02, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/Common/Makefile: -------------------------------------------------------------------------------- 1 | RGSRC=../../../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | OBJS=Alloc.o C_FileIO.o CRC.o String.o StringConvert.o \ 5 | StringToInt.o Vector.o CommandLineParser.o 6 | 7 | include $(LZMAMK) 8 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- 1 | // SPARC.h 2 | 3 | #ifndef __SPARC_H 4 | #define __SPARC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_SPARC, 0x08, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/7z/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Archive/7z/7zMethodID.h: -------------------------------------------------------------------------------- 1 | /* 7zMethodID.h */ 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Types.h" 7 | 8 | typedef UInt64 CMethodID; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/Makefile: -------------------------------------------------------------------------------- 1 | SQDIR=squashfs-tools 2 | 3 | all: 4 | make -C $(SQDIR) 5 | cp $(SQDIR)/unsquashfs . 6 | cp $(SQDIR)/mksquashfs . 7 | 8 | clean: 9 | make -C $(SQDIR) clean 10 | rm -f unsquashfs mksquashfs 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Format7zExtractR/resource.rc: -------------------------------------------------------------------------------- 1 | #include "../../MyVersionInfo.rc" 2 | 3 | MY_VERSION_INFO_DLL("7z Standalone Extracting Plugin", "7zxr") 4 | 5 | 101 ICON "../../Archive/Icons/7z.ico" 6 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/Branch/SPARC.h: -------------------------------------------------------------------------------- 1 | // SPARC.h 2 | 3 | #ifndef __SPARC_H 4 | #define __SPARC_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_SPARC, 0x08, 5) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/Windows/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../Common/MyWindows.h" 7 | #include "../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # firmware-mod-kit-osx 2 | 3 | Firmware Modification Kit forked from https://code.google.com/p/firmware-mod-kit/ modded for OSX 10.9 4 | 5 | ## Installation 6 | 7 | ``` shell 8 | cd src 9 | ./configure 10 | make all 11 | ``` 12 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Archive/7z/7zMethodID.h: -------------------------------------------------------------------------------- 1 | /* 7zMethodID.h */ 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Types.h" 7 | 8 | typedef UInt64 CMethodID; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Archive/7z/7zMethodID.c: -------------------------------------------------------------------------------- 1 | /* 7zMethodID.c */ 2 | 3 | #include "7zMethodID.h" 4 | 5 | /* 6 | int AreMethodsEqual(CMethodID *a1, CMethodID *a2) 7 | { 8 | return (*a1 == *a2) ? 1 : 0; 9 | } 10 | */ 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c -- 7z Headers 2 | 2008-10-04 : Igor Pavlov : Public domain */ 3 | 4 | #include "7zHeader.h" 5 | 6 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/Makefile: -------------------------------------------------------------------------------- 1 | RGSRC=../.. 2 | include $(RGSRC)/envir.mak 3 | 4 | SUBDIRS=SRC 5 | 6 | CD_EXPORTED_FILES+=CPL.html history.txt LGPL.txt lzma.txt 7 | JPKG_EXPORTED_DIR+=SRC 8 | LINK_DIRS+=SRC 9 | 10 | include $(RGMK) 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Archive/7z/7zMethodID.c: -------------------------------------------------------------------------------- 1 | /* 7zMethodID.c */ 2 | 3 | #include "7zMethodID.h" 4 | 5 | /* 6 | int AreMethodsEqual(CMethodID *a1, CMethodID *a2) 7 | { 8 | return (*a1 == *a2) ? 1 : 0; 9 | } 10 | */ 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/C/Archive/7z/7zMethodID.h: -------------------------------------------------------------------------------- 1 | /* 7zMethodID.h */ 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Types.h" 7 | 8 | typedef UInt64 CMethodID; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c -- 7z Headers 2 | 2008-10-04 : Igor Pavlov : Public domain */ 3 | 4 | #include "7zHeader.h" 5 | 6 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../Common/MyWindows.h" 7 | #include "../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/HashChain/HC2.h: -------------------------------------------------------------------------------- 1 | // HC2.h 2 | 3 | #ifndef __HC2_H 4 | #define __HC2_H 5 | 6 | #undef HC_NAMESPACE 7 | #define HC_NAMESPACE NHC2 8 | 9 | #include "HCMF.h" 10 | #include "HCMFMain.h" 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /src/mountcp/Makefile: -------------------------------------------------------------------------------- 1 | CC=gcc 2 | 3 | all: mountsu umountsu 4 | 5 | mountsu: 6 | $(CC) -Wall mountsu.c -o mountsu 7 | 8 | umountsu: 9 | $(CC) -Wall umountsu.c -o umountsu 10 | 11 | clean: 12 | rm -f mountsu umountsu 13 | 14 | distclean: clean 15 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/C/Archive/7z/7zMethodID.c: -------------------------------------------------------------------------------- 1 | /* 7zMethodID.c */ 2 | 3 | #include "7zMethodID.h" 4 | 5 | /* 6 | int AreMethodsEqual(CMethodID *a1, CMethodID *a2) 7 | { 8 | return (*a1 == *a2) ? 1 : 0; 9 | } 10 | */ 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- 1 | // MethodId.h 2 | 3 | #ifndef __7Z_METHOD_ID_H 4 | #define __7Z_METHOD_ID_H 5 | 6 | #include "../../Common/Types.h" 7 | 8 | typedef UInt64 CMethodId; 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c -- 7z Headers 2 | 2008-10-04 : Igor Pavlov : Public domain */ 3 | 4 | #include "7zHeader.h" 5 | 6 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c -- 7z Headers 2 | 2008-10-04 : Igor Pavlov : Public domain */ 3 | 4 | #include "7zHeader.h" 5 | 6 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 7 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/C/Archive/7z/7zHeader.c: -------------------------------------------------------------------------------- 1 | /* 7zHeader.c -- 7z Headers 2 | 2008-10-04 : Igor Pavlov : Public domain */ 3 | 4 | #include "7zHeader.h" 5 | 6 | Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C}; 7 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Archive/Common/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/UI/Console/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/Common/Types.h: -------------------------------------------------------------------------------- 1 | // Common/Types.h 2 | 3 | #ifndef __COMMON_TYPES_H 4 | #define __COMMON_TYPES_H 5 | 6 | extern "C" 7 | { 8 | #include "../../C/Types.h" 9 | } 10 | 11 | typedef int HRes; 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /src/others/squashfs-hg55x-bin/README: -------------------------------------------------------------------------------- 1 | This is a binary grabbed from the internet with no source code. It appears OK, but no guaruntees. 2 | For most systems, the squashfs-2.0-nb4 tools should be a suitable substitute for this binary. 3 | Use them instead. 4 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/Branch/ARMThumb.h: -------------------------------------------------------------------------------- 1 | // ARMThumb.h 2 | 3 | #ifndef __ARMTHUMB_H 4 | #define __ARMTHUMB_H 5 | 6 | #include "BranchCoder.h" 7 | 8 | MyClassA(BC_ARMThumb, 0x07, 1) 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Alone7z/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Format7zR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/Windows/Synchronization.cpp: -------------------------------------------------------------------------------- 1 | // Windows/Synchronization.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Synchronization.h" 6 | 7 | namespace NWindows { 8 | namespace NSynchronization { 9 | 10 | }} 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- 1 | // Common/CRC.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | extern "C" 6 | { 7 | #include "../../C/7zCrc.h" 8 | } 9 | 10 | struct CCRCTableInit { CCRCTableInit() { CrcGenerateTable(); } } g_CRCTableInit; 11 | -------------------------------------------------------------------------------- /ipk_template/control: -------------------------------------------------------------------------------- 1 | Package: package_name 2 | Priority: optional 3 | Section: net 4 | Depends: libncurses 5 | Description: Some package description. 6 | Maintainer: Some guy 7 | Source: N/A 8 | Version: 1.01-1 9 | Architecture: mipsel 10 | -------------------------------------------------------------------------------- /src/others/squashfs-2.2-r2-7z/p7zip/7zip/Compress/LZ/HashChain/HC2.h: -------------------------------------------------------------------------------- 1 | // HC2.h 2 | 3 | #ifndef __HC2_H 4 | #define __HC2_H 5 | 6 | #undef HC_NAMESPACE 7 | #define HC_NAMESPACE NHC2 8 | 9 | #include "HCMF.h" 10 | #include "HCMFMain.h" 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchARM.h: -------------------------------------------------------------------------------- 1 | // BranchARM.h 2 | 3 | #ifndef __BRANCH_ARM_H 4 | #define __BRANCH_ARM_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 ARM_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchPPC.h: -------------------------------------------------------------------------------- 1 | // BranchPPC.h 2 | 3 | #ifndef __BRANCH_PPC_H 4 | #define __BRANCH_PPC_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 PPC_B_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/LZ/BinTree/BinTree2.h: -------------------------------------------------------------------------------- 1 | // BinTree2.h 2 | 3 | #ifndef __BINTREE2_H 4 | #define __BINTREE2_H 5 | 6 | #undef BT_NAMESPACE 7 | #define BT_NAMESPACE NBT2 8 | 9 | #include "BinTree.h" 10 | #include "BinTreeMain.h" 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /src/others/squashfs-2.0-nb4/nb4-unsquashfs/brcm-lzma/Makefile: -------------------------------------------------------------------------------- 1 | INCLUDEDIR = . 2 | 3 | CC=gcc 4 | 5 | CFLAGS := -I$(INCLUDEDIR) -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -O2 6 | 7 | all:7zlzma.o IInOutStreams.o LZMADecoder.o 8 | 9 | clean : 10 | rm -f *.o 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/Bundles/Format7zExtractR/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | 3 | #ifndef __STDAFX_H 4 | #define __STDAFX_H 5 | 6 | #include "../../../Common/MyWindows.h" 7 | #include "../../../Common/NewHandler.h" 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- 1 | // Common/CRC.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | extern "C" 6 | { 7 | #include "../../C/7zCrc.h" 8 | } 9 | 10 | struct CCRCTableInit { CCRCTableInit() { CrcGenerateTable(); } } g_CRCTableInit; 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/Common/Types.h: -------------------------------------------------------------------------------- 1 | // Common/Types.h 2 | 3 | #ifndef __COMMON_TYPES_H 4 | #define __COMMON_TYPES_H 5 | 6 | extern "C" 7 | { 8 | #include "../../C/Types.h" 9 | } 10 | 11 | typedef int HRes; 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- 1 | // Common/CRC.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | extern "C" 6 | { 7 | #include "../../C/7zCrc.h" 8 | } 9 | 10 | struct CCRCTableInit { CCRCTableInit() { CrcGenerateTable(); } } g_CRCTableInit; 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/Common/Types.h: -------------------------------------------------------------------------------- 1 | // Common/Types.h 2 | 3 | #ifndef __COMMON_TYPES_H 4 | #define __COMMON_TYPES_H 5 | 6 | extern "C" 7 | { 8 | #include "../../C/Types.h" 9 | } 10 | 11 | typedef int HRes; 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchIA64.h: -------------------------------------------------------------------------------- 1 | // BranchIA64.h 2 | 3 | #ifndef __BRANCH_IA64_H 4 | #define __BRANCH_IA64_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 IA64_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZ/HashChain/HC2.h: -------------------------------------------------------------------------------- 1 | // HC2.h 2 | 3 | #ifndef __HC2_H 4 | #define __HC2_H 5 | 6 | #define BT_NAMESPACE NHC2 7 | 8 | #include "HCMain.h" 9 | 10 | #undef BT_NAMESPACE 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- 1 | // Common/CRC.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | extern "C" 6 | { 7 | #include "../../C/7zCrc.h" 8 | } 9 | 10 | struct CCRCTableInit { CCRCTableInit() { CrcGenerateTable(); } } g_CRCTableInit; 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/Common/Types.h: -------------------------------------------------------------------------------- 1 | // Common/Types.h 2 | 3 | #ifndef __COMMON_TYPES_H 4 | #define __COMMON_TYPES_H 5 | 6 | extern "C" 7 | { 8 | #include "../../C/Types.h" 9 | } 10 | 11 | typedef int HRes; 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- 1 | // Common/CRC.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | extern "C" 6 | { 7 | #include "../../C/7zCrc.h" 8 | } 9 | 10 | struct CCRCTableInit { CCRCTableInit() { CrcGenerateTable(); } } g_CRCTableInit; 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/Common/Types.h: -------------------------------------------------------------------------------- 1 | // Common/Types.h 2 | 3 | #ifndef __COMMON_TYPES_H 4 | #define __COMMON_TYPES_H 5 | 6 | extern "C" 7 | { 8 | #include "../../C/Types.h" 9 | } 10 | 11 | typedef int HRes; 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchSPARC.h: -------------------------------------------------------------------------------- 1 | // BranchSPARC.h 2 | 3 | #ifndef __BRANCH_SPARC_H 4 | #define __BRANCH_SPARC_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 SPARC_B_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/LZ/HashChain/HC2.h: -------------------------------------------------------------------------------- 1 | // HC2.h 2 | 3 | #ifndef __HC2_H 4 | #define __HC2_H 5 | 6 | #undef HC_NAMESPACE 7 | #define HC_NAMESPACE NHC2 8 | 9 | #include "HCMF.h" 10 | #include "HCMFMain.h" 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Sort.h: -------------------------------------------------------------------------------- 1 | /* Sort.h */ 2 | 3 | #ifndef __7Z_Sort_H 4 | #define __7Z_Sort_H 5 | 6 | #include "Types.h" 7 | 8 | void HeapSort(UInt32 *p, UInt32 size); 9 | /* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */ 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- 1 | // Property.h 2 | 3 | #ifndef __PROPERTY_H 4 | #define __PROPERTY_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | struct CProperty 9 | { 10 | UString Name; 11 | UString Value; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/BranchARM.h: -------------------------------------------------------------------------------- 1 | // BranchARM.h 2 | 3 | #ifndef __BRANCH_ARM_H 4 | #define __BRANCH_ARM_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 ARM_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/BranchPPC.h: -------------------------------------------------------------------------------- 1 | // BranchPPC.h 2 | 3 | #ifndef __BRANCH_PPC_H 4 | #define __BRANCH_PPC_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 PPC_B_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/lzma/C/Common/MyInitGuid.h: -------------------------------------------------------------------------------- 1 | // Common/MyInitGuid.h 2 | 3 | #ifndef __COMMON_MYINITGUID_H 4 | #define __COMMON_MYINITGUID_H 5 | 6 | #ifdef _WIN32 7 | #include 8 | #else 9 | #define INITGUID 10 | #include "MyGuidDef.h" 11 | #endif 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /src/others/squashfs-2.2-r2-7z/p7zip/7zip/Compress/LZ/BinTree/BinTree2.h: -------------------------------------------------------------------------------- 1 | // BinTree2.h 2 | 3 | #ifndef __BINTREE2_H 4 | #define __BINTREE2_H 5 | 6 | #undef BT_NAMESPACE 7 | #define BT_NAMESPACE NBT2 8 | 9 | #include "BinTree.h" 10 | #include "BinTreeMain.h" 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Sort.h: -------------------------------------------------------------------------------- 1 | /* Sort.h */ 2 | 3 | #ifndef __7Z_Sort_H 4 | #define __7Z_Sort_H 5 | 6 | #include "Types.h" 7 | 8 | void HeapSort(UInt32 *p, UInt32 size); 9 | /* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */ 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Compress/Branch/BranchARM.h: -------------------------------------------------------------------------------- 1 | /* BranchARM.h */ 2 | 3 | #ifndef __BRANCH_ARM_H 4 | #define __BRANCH_ARM_H 5 | 6 | #include "BranchTypes.h" 7 | 8 | UInt32 ARM_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/README.txt: -------------------------------------------------------------------------------- 1 | Adaptation squashfs3.4 pour utilisation lzma4.65 2 | 3 | Adaptation nécessaire pour les firmware 2.x.x de la neufbox4 4 | 5 | Adaptation réalisée d'après la recette de SGDA (http://www.neufbox4.org/forum/viewtopic.php?pid=12691#p12691) 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-lzma/lzma/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/uncramfs-lzma/lzma-rg/SRC/7zip/Compress/Branch/BranchIA64.h: -------------------------------------------------------------------------------- 1 | // BranchIA64.h 2 | 3 | #ifndef __BRANCH_IA64_H 4 | #define __BRANCH_IA64_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 IA64_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-2.2-r2-7z/p7zip/7zip/Common/FilePathAutoRename.h: -------------------------------------------------------------------------------- 1 | // Util/FilePathAutoRename.h 2 | 3 | #ifndef __FILEPATHAUTORENAME_H 4 | #define __FILEPATHAUTORENAME_H 5 | 6 | #include "Common/String.h" 7 | 8 | bool AutoRenamePath(UString &fullProcessedPath); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-hg612-lzma/lzma443/C/7zip/Compress/LZ/BinTree/BinTree2.h: -------------------------------------------------------------------------------- 1 | // BinTree2.h 2 | 3 | #ifndef __BINTREE2_H 4 | #define __BINTREE2_H 5 | 6 | #define BT_NAMESPACE NBT2 7 | 8 | #include "BinTreeMain.h" 9 | 10 | #undef BT_NAMESPACE 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Compress/Branch/BranchARM.h: -------------------------------------------------------------------------------- 1 | /* BranchARM.h */ 2 | 3 | #ifndef __BRANCH_ARM_H 4 | #define __BRANCH_ARM_H 5 | 6 | #include "BranchTypes.h" 7 | 8 | UInt32 ARM_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Compress/Branch/BranchPPC.h: -------------------------------------------------------------------------------- 1 | /* BranchPPC.h */ 2 | 3 | #ifndef __BRANCH_PPC_H 4 | #define __BRANCH_PPC_H 5 | 6 | #include "BranchTypes.h" 7 | 8 | UInt32 PPC_B_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- 1 | // Property.h 2 | 3 | #ifndef __PROPERTY_H 4 | #define __PROPERTY_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | struct CProperty 9 | { 10 | UString Name; 11 | UString Value; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/C/Sort.h: -------------------------------------------------------------------------------- 1 | /* Sort.h */ 2 | 3 | #ifndef __7Z_Sort_H 4 | #define __7Z_Sort_H 5 | 6 | #include "Types.h" 7 | 8 | void HeapSort(UInt32 *p, UInt32 size); 9 | /* void HeapSortRef(UInt32 *p, UInt32 *vals, UInt32 size); */ 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/7zip/UI/Common/WorkDir.h: -------------------------------------------------------------------------------- 1 | // WorkDir.h 2 | 3 | #ifndef __WORKDIR_H 4 | #define __WORKDIR_H 5 | 6 | #include "ZipRegistry.h" 7 | 8 | UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/lzma/CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- 1 | // Windows/FileMapping.cpp 2 | 3 | #include "StdAfx.h" 4 | 5 | #include "Windows/FileMapping.h" 6 | 7 | namespace NWindows { 8 | namespace NFile { 9 | namespace NMapping { 10 | 11 | 12 | 13 | 14 | }}} -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Compress/Branch/BranchIA64.h: -------------------------------------------------------------------------------- 1 | /* BranchIA64.h */ 2 | 3 | #ifndef __BRANCH_IA64_H 4 | #define __BRANCH_IA64_H 5 | 6 | #include "BranchTypes.h" 7 | 8 | UInt32 IA64_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/C/Compress/Branch/BranchPPC.h: -------------------------------------------------------------------------------- 1 | /* BranchPPC.h */ 2 | 3 | #ifndef __BRANCH_PPC_H 4 | #define __BRANCH_PPC_H 5 | 6 | #include "BranchTypes.h" 7 | 8 | UInt32 PPC_B_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-lzma/CPP/7zip/UI/Common/Property.h: -------------------------------------------------------------------------------- 1 | // Property.h 2 | 3 | #ifndef __PROPERTY_H 4 | #define __PROPERTY_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | struct CProperty 9 | { 10 | UString Name; 11 | UString Value; 12 | }; 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-cisco/lzma/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.4-nb4/lzma465/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.0-realtek/lzma/CPP/7zip/UI/Common/SortUtils.h: -------------------------------------------------------------------------------- 1 | // SortUtils.h 2 | 3 | #ifndef __SORTUTLS_H 4 | #define __SORTUTLS_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void SortFileNames(const UStringVector &strings, CIntVector &indices); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-4.2/lzma-4.65/CPP/7zip/UI/Common/ExtractingFilePath.h: -------------------------------------------------------------------------------- 1 | // ExtractingFilePath.h 2 | 3 | #ifndef __EXTRACTINGFILEPATH_H 4 | #define __EXTRACTINGFILEPATH_H 5 | 6 | #include "Common/MyString.h" 7 | 8 | void MakeCorrectPath(UStringVector &pathParts); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/squashfs-3.0-lzma-damn-small-variant/lzma/C/7zip/Compress/LZ/HashChain/HC2.h: -------------------------------------------------------------------------------- 1 | // HC2.h 2 | 3 | #ifndef __HC2_H 4 | #define __HC2_H 5 | 6 | #undef HC_NAMESPACE 7 | #define HC_NAMESPACE NHC2 8 | 9 | #include "HCMF.h" 10 | #include "HCMFMain.h" 11 | 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /src/lzma/C/7zip/Compress/Branch/BranchARMThumb.h: -------------------------------------------------------------------------------- 1 | // BranchARMThumb.h 2 | 3 | #ifndef __BRANCH_ARM_THUMB_H 4 | #define __BRANCH_ARM_THUMB_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 ARMThumb_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-2.0-nb4/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | make -C nb4-mksquashfs 3 | make -C nb4-unsquashfs 4 | cp nb4-mksquashfs/mksquashfs . 5 | cp nb4-unsquashfs/unsquashfs . 6 | 7 | clean: 8 | make -C nb4-mksquashfs clean 9 | make -C nb4-unsquashfs clean 10 | rm -rf mksquashfs unsquashfs 11 | -------------------------------------------------------------------------------- /src/others/squashfs-2.0-nb4/nb4-mksquashfs/lzma/compress/BinTree3Z.h: -------------------------------------------------------------------------------- 1 | #ifndef __BINTREE3Z__H 2 | #define __BINTREE3Z__H 3 | 4 | #undef BT_NAMESPACE 5 | #define BT_NAMESPACE NBT3Z 6 | 7 | #define HASH_ZIP 8 | 9 | #include "BinTree.h" 10 | 11 | #undef HASH_ZIP 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /src/others/squashfs-2.2-r2-7z/p7zip/Common/MyInitGuid.h: -------------------------------------------------------------------------------- 1 | // Common/MyInitGuid.h 2 | 3 | #ifndef __COMMON_MYINITGUID_H 4 | #define __COMMON_MYINITGUID_H 5 | 6 | #ifdef _WIN32 7 | #include 8 | #else 9 | #define INITGUID 10 | #include "MyGuidDef.h" 11 | #endif 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /src/others/squashfs-3.0-e2100/lzma/C/7zip/Compress/Branch/BranchARM.h: -------------------------------------------------------------------------------- 1 | // BranchARM.h 2 | 3 | #ifndef __BRANCH_ARM_H 4 | #define __BRANCH_ARM_H 5 | 6 | #include "Common/Types.h" 7 | 8 | UInt32 ARM_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.2-r2-lzma/C/Compress/Branch/BranchIA64.h: -------------------------------------------------------------------------------- 1 | /* BranchIA64.h */ 2 | 3 | #ifndef __BRANCH_IA64_H 4 | #define __BRANCH_IA64_H 5 | 6 | #include "BranchTypes.h" 7 | 8 | UInt32 IA64_Convert(Byte *data, UInt32 size, UInt32 nowPos, int encoding); 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /src/others/squashfs-3.3-grml-lzma/debian/doc/po/po4a.cfg: -------------------------------------------------------------------------------- 1 | [po4a_langs] fr 2 | [po4a_paths] mksquashfs.pot fr:mksquashfs.fr.po 3 | 4 | [type:docbook] ../en/mksquashfs.dbk \ 5 | fr:../fr/mksquashfs.fr.dbk add_fr:mksquashfs.fr.add \ 6 | opt:"-o inline=