refactor: replace bundle symlinks with direct vendor paths in vcxproj
Windows builds now use direct relative paths to the vendor submodules
(same pattern as versions/zstd bundle) instead of relying on POSIX
symlinks that git cannot materialise correctly on Windows without
Developer Mode / core.symlinks=true.
Changes:
- Remove all 66 symlinks from each of 25.01-bundle, 26.00-bundle,
26.01-bundle (198 total). POSIX symlinks are still created on Linux
by setup_bundle_symlinks.py for the GNU make builds.
- Update Nsis7z.vcxproj / Nsis7z_vs2026.vcxproj in all three bundles:
depth-4 ..\..\..\..\C\ -> ..\..\..\..\..\VER\C depth-3 ..\..\..\{Common,Windows}\ -> ..\..\..\..\..\VER\CPP\{...} depth-2 (non-NSIS) -> ..\..\..\..\..\VER\CPP\7zip\...
UI\NSIS paths unchanged (real bundle files)
AdditionalIncludeDirectories patched to point at vendor CPP/
- Add tools/fix_bundle_vcxproj_paths.py (idempotent helper used to
perform the rewrite; kept for future reference / re-runs)
This commit is contained in:
@@ -0,0 +1,126 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# Rewrite vcxproj files in *-bundle directories to use direct relative paths
|
||||||
|
# to the vendor submodule, removing the dependency on POSIX symlinks.
|
||||||
|
#
|
||||||
|
# Usage: python3 tools/fix_bundle_vcxproj_paths.py [--dry-run]
|
||||||
|
#
|
||||||
|
# Before this script the vcxproj paths were:
|
||||||
|
# ..\..\..\..\C\ (4 levels = bundle root, then symlink)
|
||||||
|
# ..\..\..\Common\ (3 levels = bundle CPP, then symlink)
|
||||||
|
# ..\..\Archive\ (2 levels = bundle 7zip, then symlink)
|
||||||
|
#
|
||||||
|
# After this script (same as versions/zstd bundle):
|
||||||
|
# ..\..\..\..\..\VER\C\ (5 levels = versions/, then vendor)
|
||||||
|
# ..\..\..\..\..\VER\CPP\Common\ (5 levels)
|
||||||
|
# ..\..\..\..\..\VER\CPP\7zip\Archive\ (5 levels)
|
||||||
|
#
|
||||||
|
# UI\NSIS paths are kept as-is (real bundle files, no symlink needed).
|
||||||
|
|
||||||
|
import re
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
bs = "\\"
|
||||||
|
|
||||||
|
BUNDLES = {
|
||||||
|
"25.01": "versions/25.01-bundle/CPP/7zip/Bundles/Nsis7z",
|
||||||
|
"26.00": "versions/26.00-bundle/CPP/7zip/Bundles/Nsis7z",
|
||||||
|
"26.01": "versions/26.01-bundle/CPP/7zip/Bundles/Nsis7z",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def fix_path(path, v7z, vcpp, vc):
|
||||||
|
"""Rewrite a single Include= path value."""
|
||||||
|
p = path
|
||||||
|
# depth-4: ..\..\..\..\ → vendor root
|
||||||
|
prefix4 = bs.join([".."] * 4) + bs
|
||||||
|
if p.startswith(prefix4):
|
||||||
|
rest = p[len(prefix4):]
|
||||||
|
# C\ or C
|
||||||
|
if rest.startswith("C" + bs) or rest == "C":
|
||||||
|
suffix = rest[2:] if rest.startswith("C" + bs) else ""
|
||||||
|
return vc + (bs + suffix if suffix else "")
|
||||||
|
# generic (shouldn't appear, but handle gracefully)
|
||||||
|
return vcpp + bs + ".." + bs + rest
|
||||||
|
# depth-3: ..\..\..\ → vendor CPP
|
||||||
|
prefix3 = bs.join([".."] * 3) + bs
|
||||||
|
if p.startswith(prefix3):
|
||||||
|
rest = p[len(prefix3):]
|
||||||
|
return vcpp + bs + rest
|
||||||
|
# depth-2: ..\..\ → vendor CPP\7zip\ (except UI\NSIS which stays)
|
||||||
|
prefix2 = bs.join([".."] * 2) + bs
|
||||||
|
if p.startswith(prefix2):
|
||||||
|
rest = p[len(prefix2):]
|
||||||
|
if rest.startswith("UI" + bs + "NSIS"):
|
||||||
|
return path # bundle-local real file
|
||||||
|
return v7z + bs + rest
|
||||||
|
# depth-0: local bundle file
|
||||||
|
return path
|
||||||
|
|
||||||
|
|
||||||
|
def transform_file(fpath, ver, dry_run):
|
||||||
|
vendor = bs.join([".."] * 5) + bs + ver
|
||||||
|
v7z = vendor + bs + "CPP" + bs + "7zip"
|
||||||
|
vcpp = vendor + bs + "CPP"
|
||||||
|
vc = vendor + bs + "C"
|
||||||
|
old_inc = bs.join([".."] * 3) + bs + ";"
|
||||||
|
|
||||||
|
with open(fpath, "rb") as f:
|
||||||
|
raw = f.read()
|
||||||
|
# Detect BOM
|
||||||
|
bom = b"\xef\xbb\xbf" if raw.startswith(b"\xef\xbb\xbf") else b""
|
||||||
|
content = raw.lstrip(b"\xef\xbb\xbf").decode("utf-8")
|
||||||
|
|
||||||
|
lines = content.splitlines(keepends=True)
|
||||||
|
out = []
|
||||||
|
changed = 0
|
||||||
|
|
||||||
|
for line in lines:
|
||||||
|
orig = line
|
||||||
|
|
||||||
|
# Fix AdditionalIncludeDirectories
|
||||||
|
if "<AdditionalIncludeDirectories>" in line:
|
||||||
|
# Remove spurious trailing space before semicolon
|
||||||
|
line = re.sub(r"(\.\.[/\\]\.\.)[/\\]\s+;", r"\1" + bs + ";", line)
|
||||||
|
# Replace "..\..\..\;" with vendor paths
|
||||||
|
if old_inc in line:
|
||||||
|
new_inc = vcpp + bs + ";" + vendor + bs + ";" + old_inc
|
||||||
|
line = line.replace(old_inc, new_inc)
|
||||||
|
|
||||||
|
# Fix ClCompile / ClInclude Include paths
|
||||||
|
m = re.search(r'(Include=")([^"]+)(")', line)
|
||||||
|
if m and ("<ClCompile" in line or "<ClInclude" in line):
|
||||||
|
newpath = fix_path(m.group(2), v7z, vcpp, vc)
|
||||||
|
if newpath != m.group(2):
|
||||||
|
line = line[: m.start()] + m.group(1) + newpath + m.group(3) + line[m.end():]
|
||||||
|
|
||||||
|
if line != orig:
|
||||||
|
changed += 1
|
||||||
|
out.append(line)
|
||||||
|
|
||||||
|
new_content = "".join(out)
|
||||||
|
print(f" {os.path.basename(fpath)}: {changed} lines changed")
|
||||||
|
if not dry_run and changed > 0:
|
||||||
|
with open(fpath, "wb") as f:
|
||||||
|
f.write(bom + new_content.encode("utf-8"))
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
dry_run = "--dry-run" in sys.argv
|
||||||
|
root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||||
|
if dry_run:
|
||||||
|
print("DRY RUN — no files will be written\n")
|
||||||
|
|
||||||
|
for ver, rel_dir in BUNDLES.items():
|
||||||
|
bundle_dir = os.path.join(root, rel_dir)
|
||||||
|
print(f"version {ver}:")
|
||||||
|
for fname in ["Nsis7z.vcxproj", "Nsis7z_vs2026.vcxproj"]:
|
||||||
|
fpath = os.path.join(bundle_dir, fname)
|
||||||
|
if not os.path.exists(fpath):
|
||||||
|
print(f" {fname}: SKIP (not found)")
|
||||||
|
continue
|
||||||
|
transform_file(fpath, ver, dry_run)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
@@ -1 +0,0 @@
|
|||||||
../25.01/Asm
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../25.01/C
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/7zip.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/7zip_gcc.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Aes.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Archive
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Asm.mak
|
|
||||||
@@ -205,7 +205,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -279,7 +279,7 @@
|
|||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -349,7 +349,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\ ;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -388,7 +388,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -425,7 +425,7 @@
|
|||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -458,7 +458,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -483,122 +483,122 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\..\..\..\C\7z.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7z.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zAlloc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zAlloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zBuf.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zBuf.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zCrc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zCrc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zFile.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zFile.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zTypes.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zTypes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zVersion.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zVersion.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Aes.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Aes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Alloc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Alloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bcj2.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Bcj2.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bra.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Bra.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Compiler.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Compiler.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\CpuArch.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\CpuArch.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Delta.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Delta.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFind.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzFind.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFindMt.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzFindMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzHash.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzHash.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Dec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma2Dec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2DecMt.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma2DecMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Enc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma2Enc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma86.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma86.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaDec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzmaDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaEnc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzmaEnc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaLib.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzmaLib.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\MtCoder.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtDec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\MtDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Ppmd.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd7.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Ppmd7.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Precomp.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Precomp.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\RotateDefs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\RotateDefs.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sha256.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sort.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Sort.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Threads.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Threads.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Xz.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Xz.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzCrc64.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\XzCrc64.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzEnc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\XzEnc.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\COM.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\COM.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\CommonDialog.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\CommonDialog.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ErrorMsg.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\ErrorMsg.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileSystem.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileSystem.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\NtCheck.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\NtCheck.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariantConv.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\PropVariantConv.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Registry.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Registry.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ResourceString.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\ResourceString.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\SecurityUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\SecurityUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Shell.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Shell.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\TimeUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\TimeUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Window.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Window.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zCompressionMode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zCompressionMode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zDecode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zDecode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zEncode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zEncode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zFolderInStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zFolderInStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHandler.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHandler.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHeader.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHeader.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zIn.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zIn.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zItem.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zItem.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zOut.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zProperties.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zSpecStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zSpecStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zUpdate.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zUpdate.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\CoderMixer2.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\CoderMixer2.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\DummyOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\DummyOutStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\HandlerOut.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\HandlerOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\InStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\InStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ItemNameUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ItemNameUtils.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\MultiStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\MultiStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\OutStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\OutStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ParseProperties.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ParseProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\CreateCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\CreateCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\CWrappers.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\CWrappers.h" />
|
||||||
<ClInclude Include="..\..\Common\FilePathAutoRename.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilePathAutoRename.h" />
|
||||||
<ClInclude Include="..\..\Common\FileStreams.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\FileStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\FilterCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilterCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\InBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\InBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\InOutTempBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\InOutTempBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\LimitedStreams.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\LimitedStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\LockedStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\LockedStream.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodId.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodId.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodProps.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodProps.h" />
|
||||||
<ClInclude Include="..\..\Common\OffsetStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\OffsetStream.h" />
|
||||||
<ClInclude Include="..\..\Common\OutBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\OutBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\ProgressUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\ProgressUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterArc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\RegisterArc.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterCodec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\RegisterCodec.h" />
|
||||||
<ClInclude Include="..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamBinder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamBinder.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamObjects.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamObjects.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\UniqBlocks.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\UniqBlocks.h" />
|
||||||
<ClInclude Include="..\..\Common\VirtThread.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\VirtThread.h" />
|
||||||
<ClInclude Include="..\..\Compress\Bcj2Coder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Bcj2Coder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BcjCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BcjCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BranchMisc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BranchMisc.h" />
|
||||||
<ClInclude Include="..\..\Compress\CopyCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\CopyCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Decoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Decoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Encoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Encoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaEncoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzEncoder.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveName.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DirItem.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\DirItem.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExitCode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExitCode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractMode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExtractMode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\HashCalc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\HashCalc.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\IFileExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\IFileExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ZipRegistry.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ZipRegistry.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\ConsoleClose.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\ConsoleClose.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\OpenCallbackConsole.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\OpenCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\PercentPrinter.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\PercentPrinter.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\UserInputUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\UserInputUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
||||||
@@ -608,221 +608,221 @@
|
|||||||
<ClInclude Include="pluginapi.h" />
|
<ClInclude Include="pluginapi.h" />
|
||||||
<ClInclude Include="resource.h" />
|
<ClInclude Include="resource.h" />
|
||||||
<ClInclude Include="StdAfx.h" />
|
<ClInclude Include="StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Common\AutoPtr.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\AutoPtr.h" />
|
||||||
<ClInclude Include="..\..\..\Common\CommandLineParser.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\CommandLineParser.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ComTry.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\ComTry.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Common\DynamicBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\DynamicBuffer.h" />
|
||||||
<ClInclude Include="..\..\..\Common\IntToString.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\IntToString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ListFileUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\ListFileUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyCom.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyCom.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyException.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyException.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyGuidDef.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyGuidDef.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyInitGuid.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyInitGuid.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyString.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyUnknown.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyVector.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyVector.h" />
|
||||||
<ClInclude Include="..\..\..\Common\NewHandler.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\NewHandler.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdInStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StdInStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StdOutStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringConvert.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StringConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringToInt.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StringToInt.h" />
|
||||||
<ClInclude Include="..\..\..\Common\UTFConvert.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\UTFConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Wildcard.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\Wildcard.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\DLL.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\DLL.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileDir.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileDir.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileFind.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileFind.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileIO.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileIO.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileMapping.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileMapping.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileName.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileName.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Handle.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Handle.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\MemoryLock.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\MemoryLock.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariant.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\PropVariant.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Synchronization.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Synchronization.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\System.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\System.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Thread.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Thread.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveCommandLine.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveCommandLine.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveOpenCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveOpenCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Bench.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Bench.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DefaultName.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\DefaultName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\EnumDirItems.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\EnumDirItems.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Extract.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Extract.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractingFilePath.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExtractingFilePath.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\LoadCodecs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\LoadCodecs.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\OpenArchive.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\OpenArchive.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Property.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Property.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\PropIDUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\PropIDUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SetProperties.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SetProperties.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SortUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SortUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\TempFiles.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\TempFiles.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Update.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Update.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateAction.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateAction.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdatePair.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdatePair.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateProduce.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateProduce.h" />
|
||||||
<ClInclude Include="..\..\ICoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\ICoder.h" />
|
||||||
<ClInclude Include="..\..\IMyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IMyUnknown.h" />
|
||||||
<ClInclude Include="..\..\IPassword.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IPassword.h" />
|
||||||
<ClInclude Include="..\..\IProgress.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IProgress.h" />
|
||||||
<ClInclude Include="..\..\IStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IStream.h" />
|
||||||
<ClInclude Include="..\..\PropID.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\PropID.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\C\7zAlloc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zAlloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zArcIn.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zArcIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zBuf.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf2.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zBuf2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zCrc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrcOpt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zCrcOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zFile.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zFile.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zStream.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zStream.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Aes.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Aes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\AesOpt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\AesOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Alloc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Alloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bcj2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bcj2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bra.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra86.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bra86.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\BraIA64.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\BraIA64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\CpuArch.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\CpuArch.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Delta.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Delta.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFind.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzFind.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindMt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzFindMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindOpt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzFindOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma2Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2DecMt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma2DecMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma86Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma86Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzmaDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaEnc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzmaEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaLib.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzmaLib.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtCoder.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\MtCoder.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\MtDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd7.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd7Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd7Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd8.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd8Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd8Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256Opt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha256Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha1.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1Opt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha1Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sort.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sort.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\SwapBytes.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\SwapBytes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Threads.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Threads.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xz.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Xz.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzCrc64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64Opt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzCrc64Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzEnc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzIn.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\ZstdDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\ZstdDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xxh64.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Xxh64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\HuffEnc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\HuffEnc.c" />
|
||||||
<ClCompile Include="..\..\..\Windows\CommonDialog.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\CommonDialog.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ErrorMsg.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\ErrorMsg.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileLink.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileLink.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileMapping.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileMapping.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileSystem.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileSystem.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantConv.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\PropVariantConv.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\PropVariantUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Registry.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Registry.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ResourceString.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\ResourceString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SecurityUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\SecurityUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Shell.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Shell.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\TimeUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\TimeUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Window.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Window.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zCompressionMode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zCompressionMode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zEncode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zEncode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zExtract.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zExtract.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zFolderInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zFolderInStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHeader.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHeader.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zSpecStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zSpecStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\StdAfx.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\StdAfx.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\CoderMixer2.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\CoderMixer2.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\DummyOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\DummyOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\HandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\HandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\InStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\InStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ItemNameUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ItemNameUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\MultiStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\MultiStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\OutStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\OutStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ParseProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ParseProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CreateCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\CreateCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CWrappers.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\CWrappers.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilePathAutoRename.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilePathAutoRename.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FileStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\FileStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilterCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilterCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\InBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InOutTempBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\InOutTempBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LimitedStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\LimitedStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LockedStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\LockedStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodId.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodProps.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodProps.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MultiOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MultiOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OffsetStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\OffsetStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\OutBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\ProgressUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\PropId.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\PropId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamBinder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamBinder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamObjects.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamObjects.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\UniqBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\UniqBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\VirtThread.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\VirtThread.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MemBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MemBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressMt.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\ProgressMt.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutMemStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\OutMemStream.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Coder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Bcj2Coder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Bcj2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BcjCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BcjRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchMisc.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BranchMisc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BranchRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ByteSwap.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ByteSwap.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\CopyCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\CopyRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeflateDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeflateEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Deflate64Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Deflate64Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeflateRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeltaFilter.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeltaFilter.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BitlDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BitlDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ImplodeDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeHuffmanDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ImplodeHuffmanDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzfseDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzfseDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzOutWindow.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzOutWindow.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Encoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Encoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\PpmdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdZip.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\PpmdZip.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ShrinkDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ShrinkDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Crc.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BZip2Crc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BZip2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ZstdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ZstdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveName.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\HashCalc.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\HashCalc.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\ConsoleClose.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\ConsoleClose.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\OpenCallbackConsole.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\OpenCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\PercentPrinter.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\PercentPrinter.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\UserInputUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\UserInputUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
||||||
@@ -852,72 +852,72 @@
|
|||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\Common\CommandLineParser.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\CommandLineParser.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\CRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\CRC.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\DynLimBuf.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\DynLimBuf.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\IntToString.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\IntToString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\ListFileUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\ListFileUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyString.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\MyString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyVector.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\MyVector.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\NewHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\NewHandler.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StdInStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StdOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StringConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringToInt.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StringToInt.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\UTFConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\UTFConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\Wildcard.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\Wildcard.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha256.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\HmacSha256.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\MyAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\MyAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\Pbkdf2HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\Pbkdf2HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\RandGen.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\RandGen.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\WzAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\WzAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipCrypto.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\ZipCrypto.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipStrong.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\ZipStrong.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\DLL.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\DLL.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileDir.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileDir.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileFind.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileFind.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileIO.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileIO.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileName.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileName.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\MemoryLock.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\MemoryLock.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariant.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\PropVariant.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Synchronization.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Synchronization.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\System.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\System.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SystemInfo.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\SystemInfo.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\LzmaHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\LzmaHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\SplitHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\SplitHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\XzHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\XzHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipItem.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipItem.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipAddCommon.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipAddCommon.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisRegister.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveCommandLine.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveCommandLine.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveExtractCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveExtractCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveOpenCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveOpenCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Bench.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Bench.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\DefaultName.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\DefaultName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\EnumDirItems.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\EnumDirItems.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Extract.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Extract.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ExtractingFilePath.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExtractingFilePath.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\LoadCodecs.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\LoadCodecs.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\OpenArchive.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\OpenArchive.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\PropIDUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\PropIDUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SetProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SetProperties.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SortUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SortUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\TempFiles.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\TempFiles.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Update.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Update.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateAction.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateAction.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdatePair.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdatePair.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateProduce.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateProduce.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
||||||
|
|||||||
@@ -205,7 +205,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -279,7 +279,7 @@
|
|||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -349,7 +349,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\ ;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -388,7 +388,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -425,7 +425,7 @@
|
|||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -458,7 +458,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\25.01\CPP\;..\..\..\..\..\25.01\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -483,122 +483,122 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\..\..\..\C\7z.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7z.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zAlloc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zAlloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zBuf.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zBuf.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zCrc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zCrc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zFile.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zFile.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zTypes.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zTypes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zVersion.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\7zVersion.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Aes.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Aes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Alloc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Alloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bcj2.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Bcj2.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bra.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Bra.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Compiler.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Compiler.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\CpuArch.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\CpuArch.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Delta.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Delta.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFind.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzFind.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFindMt.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzFindMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzHash.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzHash.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Dec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma2Dec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2DecMt.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma2DecMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Enc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma2Enc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma86.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Lzma86.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaDec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzmaDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaEnc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzmaEnc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaLib.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\LzmaLib.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\MtCoder.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtDec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\MtDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Ppmd.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd7.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Ppmd7.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Precomp.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Precomp.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\RotateDefs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\RotateDefs.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sha256.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sort.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Sort.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Threads.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Threads.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Xz.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\Xz.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzCrc64.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\XzCrc64.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzEnc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\C\XzEnc.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\COM.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\COM.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\CommonDialog.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\CommonDialog.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ErrorMsg.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\ErrorMsg.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileSystem.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileSystem.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\NtCheck.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\NtCheck.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariantConv.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\PropVariantConv.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Registry.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Registry.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ResourceString.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\ResourceString.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\SecurityUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\SecurityUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Shell.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Shell.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\TimeUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\TimeUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Window.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Window.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zCompressionMode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zCompressionMode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zDecode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zDecode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zEncode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zEncode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zFolderInStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zFolderInStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHandler.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHandler.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHeader.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHeader.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zIn.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zIn.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zItem.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zItem.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zOut.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zProperties.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zSpecStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zSpecStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zUpdate.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zUpdate.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\CoderMixer2.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\CoderMixer2.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\DummyOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\DummyOutStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\HandlerOut.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\HandlerOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\InStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\InStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ItemNameUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ItemNameUtils.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\MultiStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\MultiStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\OutStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\OutStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ParseProperties.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ParseProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\CreateCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\CreateCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\CWrappers.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\CWrappers.h" />
|
||||||
<ClInclude Include="..\..\Common\FilePathAutoRename.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilePathAutoRename.h" />
|
||||||
<ClInclude Include="..\..\Common\FileStreams.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\FileStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\FilterCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilterCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\InBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\InBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\InOutTempBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\InOutTempBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\LimitedStreams.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\LimitedStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\LockedStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\LockedStream.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodId.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodId.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodProps.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodProps.h" />
|
||||||
<ClInclude Include="..\..\Common\OffsetStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\OffsetStream.h" />
|
||||||
<ClInclude Include="..\..\Common\OutBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\OutBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\ProgressUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\ProgressUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterArc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\RegisterArc.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterCodec.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\RegisterCodec.h" />
|
||||||
<ClInclude Include="..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamBinder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamBinder.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamObjects.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamObjects.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\UniqBlocks.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\UniqBlocks.h" />
|
||||||
<ClInclude Include="..\..\Common\VirtThread.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Common\VirtThread.h" />
|
||||||
<ClInclude Include="..\..\Compress\Bcj2Coder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Bcj2Coder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BcjCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BcjCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BranchMisc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BranchMisc.h" />
|
||||||
<ClInclude Include="..\..\Compress\CopyCoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\CopyCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Decoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Decoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Encoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Encoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaEncoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzEncoder.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveName.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DirItem.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\DirItem.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExitCode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExitCode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractMode.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExtractMode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\HashCalc.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\HashCalc.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\IFileExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\IFileExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ZipRegistry.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ZipRegistry.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\ConsoleClose.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\ConsoleClose.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\OpenCallbackConsole.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\OpenCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\PercentPrinter.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\PercentPrinter.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\UserInputUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\UserInputUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
||||||
@@ -608,221 +608,221 @@
|
|||||||
<ClInclude Include="pluginapi.h" />
|
<ClInclude Include="pluginapi.h" />
|
||||||
<ClInclude Include="resource.h" />
|
<ClInclude Include="resource.h" />
|
||||||
<ClInclude Include="StdAfx.h" />
|
<ClInclude Include="StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Common\AutoPtr.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\AutoPtr.h" />
|
||||||
<ClInclude Include="..\..\..\Common\CommandLineParser.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\CommandLineParser.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ComTry.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\ComTry.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Common\DynamicBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\DynamicBuffer.h" />
|
||||||
<ClInclude Include="..\..\..\Common\IntToString.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\IntToString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ListFileUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\ListFileUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyCom.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyCom.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyException.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyException.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyGuidDef.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyGuidDef.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyInitGuid.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyInitGuid.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyString.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyUnknown.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyVector.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\MyVector.h" />
|
||||||
<ClInclude Include="..\..\..\Common\NewHandler.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\NewHandler.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdInStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StdInStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StdOutStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringConvert.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StringConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringToInt.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\StringToInt.h" />
|
||||||
<ClInclude Include="..\..\..\Common\UTFConvert.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\UTFConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Wildcard.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Common\Wildcard.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\DLL.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\DLL.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileDir.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileDir.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileFind.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileFind.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileIO.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileIO.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileMapping.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileMapping.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileName.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\FileName.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Handle.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Handle.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\MemoryLock.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\MemoryLock.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariant.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\PropVariant.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Synchronization.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Synchronization.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\System.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\System.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Thread.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\Windows\Thread.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveCommandLine.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveCommandLine.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveOpenCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveOpenCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Bench.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Bench.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DefaultName.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\DefaultName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\EnumDirItems.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\EnumDirItems.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Extract.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Extract.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractingFilePath.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExtractingFilePath.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\LoadCodecs.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\LoadCodecs.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\OpenArchive.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\OpenArchive.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Property.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Property.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\PropIDUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\PropIDUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SetProperties.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SetProperties.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SortUtils.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SortUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\TempFiles.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\TempFiles.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Update.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Update.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateAction.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateAction.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateCallback.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdatePair.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdatePair.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateProduce.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateProduce.h" />
|
||||||
<ClInclude Include="..\..\ICoder.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\ICoder.h" />
|
||||||
<ClInclude Include="..\..\IMyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IMyUnknown.h" />
|
||||||
<ClInclude Include="..\..\IPassword.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IPassword.h" />
|
||||||
<ClInclude Include="..\..\IProgress.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IProgress.h" />
|
||||||
<ClInclude Include="..\..\IStream.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\IStream.h" />
|
||||||
<ClInclude Include="..\..\PropID.h" />
|
<ClInclude Include="..\..\..\..\..\25.01\CPP\7zip\PropID.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\C\7zAlloc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zAlloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zArcIn.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zArcIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zBuf.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf2.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zBuf2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zCrc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrcOpt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zCrcOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zFile.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zFile.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zStream.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\7zStream.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Aes.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Aes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\AesOpt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\AesOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Alloc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Alloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bcj2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bcj2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bra.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra86.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Bra86.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\BraIA64.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\BraIA64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\CpuArch.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\CpuArch.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Delta.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Delta.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFind.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzFind.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindMt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzFindMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindOpt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzFindOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma2Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2DecMt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma2DecMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma86Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Lzma86Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzmaDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaEnc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzmaEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaLib.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\LzmaLib.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtCoder.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\MtCoder.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\MtDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd7.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd7Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd7Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd8.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Dec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd8Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Enc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Ppmd8Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256Opt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha256Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha1.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1Opt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sha1Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sort.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Sort.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\SwapBytes.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\SwapBytes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Threads.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Threads.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xz.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Xz.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzCrc64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64Opt.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzCrc64Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzEnc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzIn.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\XzIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\ZstdDec.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\ZstdDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xxh64.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\Xxh64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\HuffEnc.c" />
|
<ClCompile Include="..\..\..\..\..\25.01\C\HuffEnc.c" />
|
||||||
<ClCompile Include="..\..\..\Windows\CommonDialog.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\CommonDialog.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ErrorMsg.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\ErrorMsg.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileLink.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileLink.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileMapping.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileMapping.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileSystem.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileSystem.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantConv.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\PropVariantConv.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\PropVariantUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Registry.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Registry.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ResourceString.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\ResourceString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SecurityUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\SecurityUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Shell.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Shell.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\TimeUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\TimeUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Window.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Window.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zCompressionMode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zCompressionMode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zEncode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zEncode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zExtract.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zExtract.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zFolderInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zFolderInStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHeader.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zHeader.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zSpecStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zSpecStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\7zUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\StdAfx.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\7z\StdAfx.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\CoderMixer2.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\CoderMixer2.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\DummyOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\DummyOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\HandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\HandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\InStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\InStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ItemNameUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ItemNameUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\MultiStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\MultiStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\OutStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\OutStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ParseProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Common\ParseProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CreateCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\CreateCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CWrappers.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\CWrappers.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilePathAutoRename.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilePathAutoRename.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FileStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\FileStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilterCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\FilterCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\InBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InOutTempBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\InOutTempBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LimitedStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\LimitedStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LockedStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\LockedStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodId.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodProps.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MethodProps.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MultiOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MultiOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OffsetStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\OffsetStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\OutBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\ProgressUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\PropId.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\PropId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamBinder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamBinder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamObjects.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamObjects.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\StreamUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\UniqBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\UniqBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\VirtThread.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\VirtThread.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MemBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\MemBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressMt.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\ProgressMt.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutMemStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Common\OutMemStream.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Coder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Bcj2Coder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Bcj2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BcjCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BcjRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchMisc.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BranchMisc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BranchRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ByteSwap.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ByteSwap.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\CopyCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\CopyRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeflateDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeflateEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Deflate64Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Deflate64Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeflateRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeltaFilter.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\DeltaFilter.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BitlDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BitlDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ImplodeDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeHuffmanDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ImplodeHuffmanDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzfseDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzfseDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzOutWindow.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzOutWindow.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Encoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Encoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\Lzma2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\LzmaRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\XzEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\PpmdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdZip.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\PpmdZip.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ShrinkDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ShrinkDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Crc.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BZip2Crc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\BZip2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ZstdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Compress\ZstdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveName.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\HashCalc.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\HashCalc.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\ConsoleClose.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\ConsoleClose.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\OpenCallbackConsole.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\OpenCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\PercentPrinter.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\PercentPrinter.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\UserInputUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Console\UserInputUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
||||||
@@ -852,72 +852,72 @@
|
|||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\Common\CommandLineParser.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\CommandLineParser.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\CRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\CRC.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\DynLimBuf.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\DynLimBuf.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\IntToString.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\IntToString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\ListFileUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\ListFileUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyString.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\MyString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyVector.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\MyVector.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\NewHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\NewHandler.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StdInStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StdOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StringConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringToInt.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\StringToInt.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\UTFConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\UTFConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\Wildcard.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Common\Wildcard.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha256.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\HmacSha256.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\MyAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\MyAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\Pbkdf2HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\Pbkdf2HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\RandGen.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\RandGen.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\WzAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\WzAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipCrypto.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\ZipCrypto.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipStrong.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Crypto\ZipStrong.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\DLL.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\DLL.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileDir.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileDir.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileFind.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileFind.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileIO.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileIO.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileName.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\FileName.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\MemoryLock.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\MemoryLock.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariant.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\PropVariant.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Synchronization.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\Synchronization.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\System.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\System.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SystemInfo.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\Windows\SystemInfo.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\LzmaHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\LzmaHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\SplitHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\SplitHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\XzHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\XzHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipItem.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipItem.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipAddCommon.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipAddCommon.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Zip\ZipRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\Archive\Nsis\NsisRegister.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveCommandLine.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveCommandLine.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveExtractCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveExtractCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveOpenCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ArchiveOpenCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Bench.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Bench.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\DefaultName.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\DefaultName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\EnumDirItems.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\EnumDirItems.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Extract.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Extract.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ExtractingFilePath.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\ExtractingFilePath.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\LoadCodecs.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\LoadCodecs.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\OpenArchive.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\OpenArchive.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\PropIDUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\PropIDUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SetProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SetProperties.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SortUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\SortUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\TempFiles.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\TempFiles.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Update.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\Update.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateAction.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateAction.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdatePair.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdatePair.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateProduce.cpp" />
|
<ClCompile Include="..\..\..\..\..\25.01\CPP\7zip\UI\Common\UpdateProduce.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Common
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Compress
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Crc.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Crc64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Crypto
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/GuiCommon.rc
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Guid.txt
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/ICoder.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/IDecl.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/IPassword.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/IProgress.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/IStream.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/LzFindOpt.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/LzmaDec.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/MyVersion.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/MyVersionInfo.rc
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/PropID.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Sha1.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Sha256.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/Sort.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/SubBuild.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/Agent
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/Client7z
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/Common
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/Console
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/Explorer
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/Far
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/FileManager
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/GUI
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../25.01/CPP/7zip/UI/makefile
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_clang.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_clang_arm64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_clang_x64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_clang_x86.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_gcc.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_gcc_arm.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_gcc_arm64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_gcc_x64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_gcc_x86.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_mac_arm64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/cmpl_mac_x64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/makefile
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_clang.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_clang_arm64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_clang_x64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_clang_x86.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_gcc.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_gcc_arm.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_gcc_arm64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_gcc_x64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_gcc_x86.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_mac_arm64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/var_mac_x64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/warn_clang.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/warn_clang_mac.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../25.01/CPP/7zip/warn_gcc.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../25.01/CPP/Build.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../25.01/CPP/Common
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../25.01/CPP/Windows
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../26.00/Asm
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../26.00/C
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/7zip.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/7zip_gcc.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Aes.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Archive
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Asm.mak
|
|
||||||
@@ -205,7 +205,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -279,7 +279,7 @@
|
|||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -349,7 +349,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\ ;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -388,7 +388,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -425,7 +425,7 @@
|
|||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -458,7 +458,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -483,122 +483,122 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\..\..\..\C\7z.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7z.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zAlloc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zAlloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zBuf.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zBuf.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zCrc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zCrc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zFile.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zFile.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zTypes.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zTypes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zVersion.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zVersion.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Aes.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Aes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Alloc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Alloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bcj2.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Bcj2.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bra.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Bra.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Compiler.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Compiler.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\CpuArch.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\CpuArch.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Delta.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Delta.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFind.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzFind.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFindMt.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzFindMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzHash.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzHash.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Dec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma2Dec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2DecMt.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma2DecMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Enc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma2Enc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma86.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma86.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaDec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzmaDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaEnc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzmaEnc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaLib.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzmaLib.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\MtCoder.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtDec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\MtDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Ppmd.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd7.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Ppmd7.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Precomp.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Precomp.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\RotateDefs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\RotateDefs.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sha256.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sort.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Sort.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Threads.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Threads.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Xz.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Xz.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzCrc64.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\XzCrc64.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzEnc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\XzEnc.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\COM.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\COM.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\CommonDialog.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\CommonDialog.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ErrorMsg.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\ErrorMsg.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileSystem.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileSystem.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\NtCheck.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\NtCheck.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariantConv.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\PropVariantConv.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Registry.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Registry.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ResourceString.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\ResourceString.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\SecurityUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\SecurityUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Shell.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Shell.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\TimeUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\TimeUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Window.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Window.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zCompressionMode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zCompressionMode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zDecode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zDecode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zEncode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zEncode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zFolderInStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zFolderInStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHandler.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHandler.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHeader.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHeader.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zIn.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zIn.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zItem.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zItem.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zOut.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zProperties.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zSpecStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zSpecStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zUpdate.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zUpdate.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\CoderMixer2.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\CoderMixer2.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\DummyOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\DummyOutStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\HandlerOut.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\HandlerOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\InStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\InStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ItemNameUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ItemNameUtils.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\MultiStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\MultiStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\OutStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\OutStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ParseProperties.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ParseProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\CreateCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\CreateCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\CWrappers.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\CWrappers.h" />
|
||||||
<ClInclude Include="..\..\Common\FilePathAutoRename.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilePathAutoRename.h" />
|
||||||
<ClInclude Include="..\..\Common\FileStreams.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\FileStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\FilterCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilterCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\InBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\InBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\InOutTempBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\InOutTempBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\LimitedStreams.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\LimitedStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\LockedStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\LockedStream.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodId.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodId.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodProps.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodProps.h" />
|
||||||
<ClInclude Include="..\..\Common\OffsetStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\OffsetStream.h" />
|
||||||
<ClInclude Include="..\..\Common\OutBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\OutBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\ProgressUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\ProgressUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterArc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\RegisterArc.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterCodec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\RegisterCodec.h" />
|
||||||
<ClInclude Include="..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamBinder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamBinder.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamObjects.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamObjects.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\UniqBlocks.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\UniqBlocks.h" />
|
||||||
<ClInclude Include="..\..\Common\VirtThread.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\VirtThread.h" />
|
||||||
<ClInclude Include="..\..\Compress\Bcj2Coder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Bcj2Coder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BcjCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BcjCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BranchMisc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BranchMisc.h" />
|
||||||
<ClInclude Include="..\..\Compress\CopyCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\CopyCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Decoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Decoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Encoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Encoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaEncoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzEncoder.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveName.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DirItem.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\DirItem.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExitCode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExitCode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractMode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExtractMode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\HashCalc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\HashCalc.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\IFileExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\IFileExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ZipRegistry.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ZipRegistry.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\ConsoleClose.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\ConsoleClose.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\OpenCallbackConsole.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\OpenCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\PercentPrinter.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\PercentPrinter.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\UserInputUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\UserInputUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
||||||
@@ -608,221 +608,221 @@
|
|||||||
<ClInclude Include="pluginapi.h" />
|
<ClInclude Include="pluginapi.h" />
|
||||||
<ClInclude Include="resource.h" />
|
<ClInclude Include="resource.h" />
|
||||||
<ClInclude Include="StdAfx.h" />
|
<ClInclude Include="StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Common\AutoPtr.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\AutoPtr.h" />
|
||||||
<ClInclude Include="..\..\..\Common\CommandLineParser.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\CommandLineParser.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ComTry.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\ComTry.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Common\DynamicBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\DynamicBuffer.h" />
|
||||||
<ClInclude Include="..\..\..\Common\IntToString.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\IntToString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ListFileUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\ListFileUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyCom.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyCom.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyException.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyException.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyGuidDef.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyGuidDef.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyInitGuid.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyInitGuid.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyString.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyUnknown.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyVector.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyVector.h" />
|
||||||
<ClInclude Include="..\..\..\Common\NewHandler.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\NewHandler.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdInStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StdInStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StdOutStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringConvert.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StringConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringToInt.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StringToInt.h" />
|
||||||
<ClInclude Include="..\..\..\Common\UTFConvert.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\UTFConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Wildcard.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\Wildcard.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\DLL.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\DLL.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileDir.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileDir.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileFind.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileFind.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileIO.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileIO.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileMapping.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileMapping.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileName.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileName.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Handle.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Handle.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\MemoryLock.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\MemoryLock.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariant.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\PropVariant.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Synchronization.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Synchronization.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\System.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\System.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Thread.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Thread.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveCommandLine.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveCommandLine.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveOpenCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveOpenCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Bench.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Bench.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DefaultName.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\DefaultName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\EnumDirItems.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\EnumDirItems.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Extract.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Extract.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractingFilePath.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExtractingFilePath.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\LoadCodecs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\LoadCodecs.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\OpenArchive.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\OpenArchive.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Property.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Property.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\PropIDUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\PropIDUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SetProperties.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SetProperties.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SortUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SortUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\TempFiles.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\TempFiles.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Update.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Update.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateAction.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateAction.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdatePair.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdatePair.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateProduce.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateProduce.h" />
|
||||||
<ClInclude Include="..\..\ICoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\ICoder.h" />
|
||||||
<ClInclude Include="..\..\IMyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IMyUnknown.h" />
|
||||||
<ClInclude Include="..\..\IPassword.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IPassword.h" />
|
||||||
<ClInclude Include="..\..\IProgress.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IProgress.h" />
|
||||||
<ClInclude Include="..\..\IStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IStream.h" />
|
||||||
<ClInclude Include="..\..\PropID.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\PropID.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\C\7zAlloc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zAlloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zArcIn.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zArcIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zBuf.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf2.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zBuf2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zCrc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrcOpt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zCrcOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zFile.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zFile.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zStream.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zStream.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Aes.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Aes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\AesOpt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\AesOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Alloc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Alloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bcj2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bcj2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bra.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra86.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bra86.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\BraIA64.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\BraIA64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\CpuArch.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\CpuArch.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Delta.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Delta.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFind.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzFind.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindMt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzFindMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindOpt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzFindOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma2Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2DecMt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma2DecMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma86Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma86Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzmaDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaEnc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzmaEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaLib.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzmaLib.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtCoder.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\MtCoder.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\MtDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd7.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd7Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd7Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd8.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd8Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd8Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256Opt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha256Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha1.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1Opt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha1Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sort.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sort.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\SwapBytes.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\SwapBytes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Threads.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Threads.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xz.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Xz.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzCrc64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64Opt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzCrc64Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzEnc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzIn.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\ZstdDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\ZstdDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xxh64.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Xxh64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\HuffEnc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\HuffEnc.c" />
|
||||||
<ClCompile Include="..\..\..\Windows\CommonDialog.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\CommonDialog.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ErrorMsg.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\ErrorMsg.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileLink.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileLink.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileMapping.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileMapping.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileSystem.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileSystem.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantConv.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\PropVariantConv.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\PropVariantUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Registry.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Registry.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ResourceString.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\ResourceString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SecurityUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\SecurityUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Shell.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Shell.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\TimeUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\TimeUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Window.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Window.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zCompressionMode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zCompressionMode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zEncode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zEncode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zExtract.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zExtract.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zFolderInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zFolderInStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHeader.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHeader.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zSpecStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zSpecStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\StdAfx.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\StdAfx.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\CoderMixer2.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\CoderMixer2.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\DummyOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\DummyOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\HandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\HandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\InStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\InStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ItemNameUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ItemNameUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\MultiStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\MultiStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\OutStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\OutStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ParseProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ParseProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CreateCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\CreateCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CWrappers.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\CWrappers.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilePathAutoRename.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilePathAutoRename.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FileStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\FileStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilterCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilterCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\InBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InOutTempBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\InOutTempBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LimitedStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\LimitedStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LockedStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\LockedStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodId.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodProps.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodProps.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MultiOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MultiOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OffsetStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\OffsetStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\OutBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\ProgressUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\PropId.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\PropId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamBinder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamBinder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamObjects.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamObjects.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\UniqBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\UniqBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\VirtThread.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\VirtThread.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MemBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MemBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressMt.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\ProgressMt.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutMemStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\OutMemStream.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Coder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Bcj2Coder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Bcj2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BcjCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BcjRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchMisc.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BranchMisc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BranchRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ByteSwap.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ByteSwap.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\CopyCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\CopyRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeflateDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeflateEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Deflate64Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Deflate64Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeflateRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeltaFilter.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeltaFilter.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BitlDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BitlDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ImplodeDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeHuffmanDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ImplodeHuffmanDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzfseDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzfseDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzOutWindow.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzOutWindow.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Encoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Encoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\PpmdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdZip.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\PpmdZip.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ShrinkDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ShrinkDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Crc.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BZip2Crc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BZip2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ZstdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ZstdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveName.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\HashCalc.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\HashCalc.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\ConsoleClose.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\ConsoleClose.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\OpenCallbackConsole.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\OpenCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\PercentPrinter.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\PercentPrinter.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\UserInputUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\UserInputUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
||||||
@@ -852,72 +852,72 @@
|
|||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\Common\CommandLineParser.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\CommandLineParser.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\CRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\CRC.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\DynLimBuf.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\DynLimBuf.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\IntToString.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\IntToString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\ListFileUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\ListFileUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyString.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\MyString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyVector.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\MyVector.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\NewHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\NewHandler.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StdInStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StdOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StringConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringToInt.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StringToInt.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\UTFConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\UTFConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\Wildcard.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\Wildcard.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha256.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\HmacSha256.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\MyAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\MyAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\Pbkdf2HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\Pbkdf2HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\RandGen.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\RandGen.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\WzAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\WzAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipCrypto.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\ZipCrypto.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipStrong.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\ZipStrong.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\DLL.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\DLL.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileDir.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileDir.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileFind.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileFind.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileIO.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileIO.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileName.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileName.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\MemoryLock.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\MemoryLock.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariant.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\PropVariant.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Synchronization.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Synchronization.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\System.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\System.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SystemInfo.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\SystemInfo.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\LzmaHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\LzmaHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\SplitHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\SplitHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\XzHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\XzHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipItem.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipItem.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipAddCommon.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipAddCommon.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisRegister.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveCommandLine.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveCommandLine.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveExtractCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveExtractCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveOpenCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveOpenCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Bench.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Bench.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\DefaultName.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\DefaultName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\EnumDirItems.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\EnumDirItems.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Extract.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Extract.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ExtractingFilePath.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExtractingFilePath.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\LoadCodecs.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\LoadCodecs.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\OpenArchive.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\OpenArchive.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\PropIDUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\PropIDUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SetProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SetProperties.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SortUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SortUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\TempFiles.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\TempFiles.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Update.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Update.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateAction.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateAction.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdatePair.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdatePair.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateProduce.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateProduce.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
||||||
|
|||||||
@@ -205,7 +205,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
<AssemblerOutput>AssemblyAndMachineCode</AssemblerOutput>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -279,7 +279,7 @@
|
|||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -313,7 +313,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;UNICODE;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -349,7 +349,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\ ;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -388,7 +388,7 @@
|
|||||||
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
<RuntimeTypeInfo>false</RuntimeTypeInfo>
|
||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level4</WarningLevel>
|
<WarningLevel>Level4</WarningLevel>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>NDEBUG;UNICODE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
@@ -425,7 +425,7 @@
|
|||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<MinimalRebuild>true</MinimalRebuild>
|
<MinimalRebuild>true</MinimalRebuild>
|
||||||
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -458,7 +458,7 @@
|
|||||||
<SuppressStartupBanner>true</SuppressStartupBanner>
|
<SuppressStartupBanner>true</SuppressStartupBanner>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
||||||
<AdditionalIncludeDirectories>..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>..\..\..\..\..\26.00\CPP\;..\..\..\..\..\26.00\;..\..\..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||||
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
<PreprocessorDefinitions>_DEBUG;WIN32;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
<CallingConvention>FastCall</CallingConvention>
|
<CallingConvention>FastCall</CallingConvention>
|
||||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||||
@@ -483,122 +483,122 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\..\..\..\C\7z.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7z.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zAlloc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zAlloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zBuf.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zBuf.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zCrc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zCrc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zFile.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zFile.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zTypes.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zTypes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\7zVersion.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\7zVersion.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Aes.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Aes.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Alloc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Alloc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bcj2.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Bcj2.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Bra.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Bra.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Compiler.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Compiler.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\CpuArch.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\CpuArch.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Delta.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Delta.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFind.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzFind.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzFindMt.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzFindMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzHash.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzHash.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Dec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma2Dec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2DecMt.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma2DecMt.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma2Enc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma2Enc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Lzma86.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Lzma86.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaDec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzmaDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaEnc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzmaEnc.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\LzmaLib.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\LzmaLib.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\MtCoder.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\MtDec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\MtDec.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Ppmd.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Ppmd7.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Ppmd7.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Precomp.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Precomp.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\RotateDefs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\RotateDefs.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sha256.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Sha256.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Sort.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Sort.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Threads.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Threads.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\Xz.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\Xz.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzCrc64.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\XzCrc64.h" />
|
||||||
<ClInclude Include="..\..\..\..\C\XzEnc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\C\XzEnc.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\COM.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\COM.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\CommonDialog.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\CommonDialog.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ErrorMsg.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\ErrorMsg.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileSystem.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileSystem.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\NtCheck.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\NtCheck.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariantConv.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\PropVariantConv.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Registry.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Registry.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\ResourceString.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\ResourceString.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\SecurityUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\SecurityUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Shell.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Shell.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\TimeUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\TimeUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Window.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Window.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zCompressionMode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zCompressionMode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zDecode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zDecode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zEncode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zEncode.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zFolderInStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zFolderInStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHandler.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHandler.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zHeader.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHeader.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zIn.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zIn.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zItem.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zItem.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zOut.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zProperties.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zSpecStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zSpecStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\7zUpdate.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zUpdate.h" />
|
||||||
<ClInclude Include="..\..\Archive\7z\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\CoderMixer2.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\CoderMixer2.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\DummyOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\DummyOutStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\HandlerOut.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\HandlerOut.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\InStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\InStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ItemNameUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ItemNameUtils.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\MultiStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\MultiStream.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\OutStreamWithCRC.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\OutStreamWithCRC.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\ParseProperties.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ParseProperties.h" />
|
||||||
<ClInclude Include="..\..\Archive\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\CreateCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\CreateCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\CWrappers.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\CWrappers.h" />
|
||||||
<ClInclude Include="..\..\Common\FilePathAutoRename.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilePathAutoRename.h" />
|
||||||
<ClInclude Include="..\..\Common\FileStreams.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\FileStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\FilterCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilterCoder.h" />
|
||||||
<ClInclude Include="..\..\Common\InBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\InBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\InOutTempBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\InOutTempBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\LimitedStreams.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\LimitedStreams.h" />
|
||||||
<ClInclude Include="..\..\Common\LockedStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\LockedStream.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodId.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodId.h" />
|
||||||
<ClInclude Include="..\..\Common\MethodProps.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodProps.h" />
|
||||||
<ClInclude Include="..\..\Common\OffsetStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\OffsetStream.h" />
|
||||||
<ClInclude Include="..\..\Common\OutBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\OutBuffer.h" />
|
||||||
<ClInclude Include="..\..\Common\ProgressUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\ProgressUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterArc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\RegisterArc.h" />
|
||||||
<ClInclude Include="..\..\Common\RegisterCodec.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\RegisterCodec.h" />
|
||||||
<ClInclude Include="..\..\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamBinder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamBinder.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamObjects.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamObjects.h" />
|
||||||
<ClInclude Include="..\..\Common\StreamUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamUtils.h" />
|
||||||
<ClInclude Include="..\..\Common\UniqBlocks.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\UniqBlocks.h" />
|
||||||
<ClInclude Include="..\..\Common\VirtThread.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Common\VirtThread.h" />
|
||||||
<ClInclude Include="..\..\Compress\Bcj2Coder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Bcj2Coder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BcjCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BcjCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\BranchMisc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BranchMisc.h" />
|
||||||
<ClInclude Include="..\..\Compress\CopyCoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\CopyCoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Decoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Decoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\Lzma2Encoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Encoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\LzmaEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaEncoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzDecoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzDecoder.h" />
|
||||||
<ClInclude Include="..\..\Compress\XzEncoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzEncoder.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveName.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DirItem.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\DirItem.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExitCode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExitCode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractMode.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExtractMode.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\HashCalc.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\HashCalc.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\IFileExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\IFileExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\StdAfx.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\StdAfx.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ZipRegistry.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ZipRegistry.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\ConsoleClose.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\ConsoleClose.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\OpenCallbackConsole.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\OpenCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\PercentPrinter.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\PercentPrinter.h" />
|
||||||
<ClInclude Include="..\..\UI\Console\UserInputUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\UserInputUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
<ClInclude Include="..\..\UI\NSIS\ExtractCallbackConsole.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
<ClInclude Include="..\..\UI\NSIS\NSISBreak.h" />
|
||||||
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
<ClInclude Include="..\..\UI\NSIS\StdAfx.h" />
|
||||||
@@ -608,221 +608,221 @@
|
|||||||
<ClInclude Include="pluginapi.h" />
|
<ClInclude Include="pluginapi.h" />
|
||||||
<ClInclude Include="resource.h" />
|
<ClInclude Include="resource.h" />
|
||||||
<ClInclude Include="StdAfx.h" />
|
<ClInclude Include="StdAfx.h" />
|
||||||
<ClInclude Include="..\..\..\Common\AutoPtr.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\AutoPtr.h" />
|
||||||
<ClInclude Include="..\..\..\Common\CommandLineParser.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\CommandLineParser.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ComTry.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\ComTry.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Common\DynamicBuffer.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\DynamicBuffer.h" />
|
||||||
<ClInclude Include="..\..\..\Common\IntToString.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\IntToString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\ListFileUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\ListFileUtils.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyCom.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyCom.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyException.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyException.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyGuidDef.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyGuidDef.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyInitGuid.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyInitGuid.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyString.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyString.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyUnknown.h" />
|
||||||
<ClInclude Include="..\..\..\Common\MyVector.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\MyVector.h" />
|
||||||
<ClInclude Include="..\..\..\Common\NewHandler.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\NewHandler.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdInStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StdInStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StdOutStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StdOutStream.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringConvert.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StringConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\StringToInt.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\StringToInt.h" />
|
||||||
<ClInclude Include="..\..\..\Common\UTFConvert.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\UTFConvert.h" />
|
||||||
<ClInclude Include="..\..\..\Common\Wildcard.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Common\Wildcard.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Defs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Defs.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\DLL.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\DLL.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileDir.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileDir.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileFind.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileFind.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileIO.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileIO.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileMapping.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileMapping.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\FileName.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\FileName.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Handle.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Handle.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\MemoryLock.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\MemoryLock.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\PropVariant.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\PropVariant.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Synchronization.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Synchronization.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\System.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\System.h" />
|
||||||
<ClInclude Include="..\..\..\Windows\Thread.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\Windows\Thread.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveCommandLine.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveCommandLine.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveExtractCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveExtractCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ArchiveOpenCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveOpenCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Bench.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Bench.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\DefaultName.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\DefaultName.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\EnumDirItems.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\EnumDirItems.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Extract.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Extract.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\ExtractingFilePath.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExtractingFilePath.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\LoadCodecs.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\LoadCodecs.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\OpenArchive.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\OpenArchive.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Property.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Property.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\PropIDUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\PropIDUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SetProperties.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SetProperties.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\SortUtils.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SortUtils.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\TempFiles.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\TempFiles.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\Update.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Update.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateAction.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateAction.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateCallback.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateCallback.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdatePair.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdatePair.h" />
|
||||||
<ClInclude Include="..\..\UI\Common\UpdateProduce.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateProduce.h" />
|
||||||
<ClInclude Include="..\..\ICoder.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\ICoder.h" />
|
||||||
<ClInclude Include="..\..\IMyUnknown.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IMyUnknown.h" />
|
||||||
<ClInclude Include="..\..\IPassword.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IPassword.h" />
|
||||||
<ClInclude Include="..\..\IProgress.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IProgress.h" />
|
||||||
<ClInclude Include="..\..\IStream.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\IStream.h" />
|
||||||
<ClInclude Include="..\..\PropID.h" />
|
<ClInclude Include="..\..\..\..\..\26.00\CPP\7zip\PropID.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\..\..\C\7zAlloc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zAlloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zArcIn.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zArcIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zBuf.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zBuf2.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zBuf2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zCrc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zCrcOpt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zCrcOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zFile.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zFile.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\7zStream.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\7zStream.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Aes.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Aes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\AesOpt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\AesOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Alloc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Alloc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bcj2.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bcj2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bcj2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bra.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Bra86.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Bra86.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\BraIA64.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\BraIA64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\CpuArch.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\CpuArch.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Delta.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Delta.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFind.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzFind.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindMt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzFindMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzFindOpt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzFindOpt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma2Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2DecMt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma2DecMt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma2Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma2Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma86Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Lzma86Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Lzma86Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzmaDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaEnc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzmaEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\LzmaLib.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\LzmaLib.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtCoder.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\MtCoder.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\MtDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\MtDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd7.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd7Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd7Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd7Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd8.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Dec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd8Dec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Ppmd8Enc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Ppmd8Enc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha256.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha256Opt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha256Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha1.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sha1Opt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sha1Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Sort.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Sort.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\SwapBytes.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\SwapBytes.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Threads.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Threads.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xz.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Xz.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzCrc64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzCrc64Opt.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzCrc64Opt.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzEnc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzEnc.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\XzIn.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\XzIn.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\ZstdDec.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\ZstdDec.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\Xxh64.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\Xxh64.c" />
|
||||||
<ClCompile Include="..\..\..\..\C\HuffEnc.c" />
|
<ClCompile Include="..\..\..\..\..\26.00\C\HuffEnc.c" />
|
||||||
<ClCompile Include="..\..\..\Windows\CommonDialog.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\CommonDialog.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ErrorMsg.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\ErrorMsg.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileLink.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileLink.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileMapping.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileMapping.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileSystem.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileSystem.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantConv.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\PropVariantConv.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariantUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\PropVariantUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Registry.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Registry.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\ResourceString.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\ResourceString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SecurityUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\SecurityUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Shell.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Shell.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\TimeUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\TimeUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Window.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Window.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zCompressionMode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zCompressionMode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zEncode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zEncode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zExtract.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zExtract.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zFolderInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zFolderInStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zHeader.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zHeader.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zSpecStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zSpecStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\7zUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\7zUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\7z\StdAfx.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\7z\StdAfx.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\CoderMixer2.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\CoderMixer2.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\DummyOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\DummyOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\HandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\HandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\InStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\InStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ItemNameUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ItemNameUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\MultiStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\MultiStream.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\OutStreamWithCRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\OutStreamWithCRC.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Common\ParseProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Common\ParseProperties.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CreateCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\CreateCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\CWrappers.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\CWrappers.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilePathAutoRename.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilePathAutoRename.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FileStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\FileStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\FilterCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\FilterCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\InBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\InOutTempBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\InOutTempBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LimitedStreams.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\LimitedStreams.cpp" />
|
||||||
<ClCompile Include="..\..\Common\LockedStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\LockedStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodId.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MethodProps.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MethodProps.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MultiOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MultiOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OffsetStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\OffsetStream.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutBuffer.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\OutBuffer.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\ProgressUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\PropId.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\PropId.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamBinder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamBinder.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamObjects.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamObjects.cpp" />
|
||||||
<ClCompile Include="..\..\Common\StreamUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\StreamUtils.cpp" />
|
||||||
<ClCompile Include="..\..\Common\UniqBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\UniqBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\VirtThread.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\VirtThread.cpp" />
|
||||||
<ClCompile Include="..\..\Common\MemBlocks.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\MemBlocks.cpp" />
|
||||||
<ClCompile Include="..\..\Common\ProgressMt.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\ProgressMt.cpp" />
|
||||||
<ClCompile Include="..\..\Common\OutMemStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Common\OutMemStream.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Coder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Bcj2Coder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Bcj2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Bcj2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BcjCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BcjRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BcjRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchMisc.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BranchMisc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BranchRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BranchRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ByteSwap.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ByteSwap.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyCoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\CopyCoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\CopyRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\CopyRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeflateDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeflateEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Deflate64Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Deflate64Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeflateRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeflateRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\DeltaFilter.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\DeltaFilter.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BitlDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BitlDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ImplodeDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ImplodeHuffmanDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ImplodeHuffmanDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzfseDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzfseDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzOutWindow.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzOutWindow.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Encoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Encoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\Lzma2Register.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\Lzma2Register.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\LzmaRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\LzmaRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\XzEncoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\XzEncoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\PpmdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\PpmdZip.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\PpmdZip.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ShrinkDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ShrinkDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Crc.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BZip2Crc.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\BZip2Decoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\BZip2Decoder.cpp" />
|
||||||
<ClCompile Include="..\..\Compress\ZstdDecoder.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Compress\ZstdDecoder.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveName.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\HashCalc.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\HashCalc.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\ConsoleClose.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\ConsoleClose.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\OpenCallbackConsole.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\OpenCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\PercentPrinter.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\PercentPrinter.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Console\UserInputUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Console\UserInputUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\ExtractCallbackConsole.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\Main.cpp" />
|
||||||
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
<ClCompile Include="..\..\UI\NSIS\MainAr.cpp" />
|
||||||
@@ -852,72 +852,72 @@
|
|||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
<PrecompiledHeaderFile Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">StdAfx.h</PrecompiledHeaderFile>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\Common\CommandLineParser.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\CommandLineParser.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\CRC.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\CRC.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\DynLimBuf.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\DynLimBuf.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\IntToString.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\IntToString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\ListFileUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\ListFileUtils.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyString.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\MyString.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\MyVector.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\MyVector.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\NewHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\NewHandler.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdInStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StdInStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StdOutStream.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StdOutStream.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StringConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\StringToInt.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\StringToInt.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\UTFConvert.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\UTFConvert.cpp" />
|
||||||
<ClCompile Include="..\..\..\Common\Wildcard.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Common\Wildcard.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\HmacSha256.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\HmacSha256.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\MyAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\MyAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\Pbkdf2HmacSha1.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\Pbkdf2HmacSha1.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\RandGen.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\RandGen.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\WzAes.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\WzAes.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipCrypto.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\ZipCrypto.cpp" />
|
||||||
<ClCompile Include="..\..\Crypto\ZipStrong.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Crypto\ZipStrong.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\DLL.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\DLL.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileDir.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileDir.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileFind.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileFind.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileIO.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileIO.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\FileName.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\FileName.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\MemoryLock.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\MemoryLock.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\PropVariant.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\PropVariant.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\Synchronization.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\Synchronization.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\System.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\System.cpp" />
|
||||||
<ClCompile Include="..\..\..\Windows\SystemInfo.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\Windows\SystemInfo.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\LzmaHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\LzmaHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\SplitHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\SplitHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\XzHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\XzHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipHandlerOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipHandlerOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipItem.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipItem.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipOut.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipOut.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipAddCommon.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipAddCommon.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipUpdate.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipUpdate.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Zip\ZipRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Zip\ZipRegister.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisDecode.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisDecode.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisHandler.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisHandler.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisIn.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisIn.cpp" />
|
||||||
<ClCompile Include="..\..\Archive\Nsis\NsisRegister.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\Archive\Nsis\NsisRegister.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveCommandLine.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveCommandLine.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveExtractCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveExtractCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ArchiveOpenCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ArchiveOpenCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Bench.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Bench.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\DefaultName.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\DefaultName.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\EnumDirItems.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\EnumDirItems.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Extract.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Extract.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\ExtractingFilePath.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\ExtractingFilePath.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\LoadCodecs.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\LoadCodecs.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\OpenArchive.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\OpenArchive.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\PropIDUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\PropIDUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SetProperties.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SetProperties.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\SortUtils.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\SortUtils.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\TempFiles.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\TempFiles.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\Update.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\Update.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateAction.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateAction.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateCallback.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateCallback.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdatePair.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdatePair.cpp" />
|
||||||
<ClCompile Include="..\..\UI\Common\UpdateProduce.cpp" />
|
<ClCompile Include="..\..\..\..\..\26.00\CPP\7zip\UI\Common\UpdateProduce.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
<ResourceCompile Include="..\..\..\..\C\7zVersion.rc" />
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Common
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Compress
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Crc.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Crc64.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Crypto
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/GuiCommon.rc
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Guid.txt
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/ICoder.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/IDecl.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/IPassword.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/IProgress.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/IStream.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/LzFindOpt.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/LzmaDec.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/MyVersion.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/MyVersionInfo.rc
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/PropID.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Sha1.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Sha256.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/Sort.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../26.00/CPP/7zip/SubBuild.mak
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
../../../../26.00/CPP/7zip/UI/Agent
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user