mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 08:24:11 -06:00
9.35
This commit is contained in:
committed by
Kornel Lesiński
parent
f08f4dcc3c
commit
0dc16c691d
@@ -195,6 +195,8 @@ STDMETHODIMP_(UInt64) CAgentFolder::GetItemSize(UInt32 index)
|
||||
const CProxyFolder &item = _proxyArchive->Folders[folder->Folders[realIndex]];
|
||||
if (!_flatMode)
|
||||
return item.Size;
|
||||
if (!item.IsLeaf)
|
||||
return 0;
|
||||
arcIndex = item.Index;
|
||||
}
|
||||
else
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
#include "../../MyVersionInfo.rc"
|
||||
#include "../../../../C/7zVersion.rc"
|
||||
|
||||
MY_VERSION_INFO_APP("7-Zip client", "7zcl")
|
||||
|
||||
@@ -24,7 +24,7 @@ struct CDirItem
|
||||
CByteBuffer ReparseData;
|
||||
CByteBuffer ReparseData2; // fixed (reduced) absolute links
|
||||
|
||||
bool AreReparseData() const { return ReparseData.Size() != 0 || !ReparseData2.Size() != 0; }
|
||||
bool AreReparseData() const { return ReparseData.Size() != 0 || ReparseData2.Size() != 0; }
|
||||
#endif
|
||||
|
||||
UInt32 Attrib;
|
||||
|
||||
@@ -43,11 +43,7 @@
|
||||
|
||||
#include "HashCon.h"
|
||||
|
||||
#if !defined(EXTERNAL_CODECS) && defined(_NO_CRYPTO)
|
||||
#define IT_IS_REDUCED_VERSION
|
||||
#endif
|
||||
|
||||
#ifdef IT_IS_REDUCED_VERSION
|
||||
#ifdef PROG_VARIANT_R
|
||||
#include "../../../../C/7zVersion.h"
|
||||
#else
|
||||
#include "../../MyVersion.h"
|
||||
@@ -64,7 +60,7 @@ extern CStdOutStream *g_StdStream;
|
||||
|
||||
static const char *kCopyrightString = "\n7-Zip"
|
||||
#ifndef EXTERNAL_CODECS
|
||||
#ifdef IT_IS_REDUCED_VERSION
|
||||
#ifdef PROG_VARIANT_R
|
||||
" (r)"
|
||||
#else
|
||||
" (a)"
|
||||
@@ -80,7 +76,7 @@ static const char *kCopyrightString = "\n7-Zip"
|
||||
static const char *kHelpString =
|
||||
"\nUsage: 7z"
|
||||
#ifndef EXTERNAL_CODECS
|
||||
#ifdef IT_IS_REDUCED_VERSION
|
||||
#ifdef PROG_VARIANT_R
|
||||
"r"
|
||||
#else
|
||||
"a"
|
||||
|
||||
Reference in New Issue
Block a user