Files
Aaru.Compression.Native/3rdparty/lzma/CPP/7zip/UI/Console/List.h

41 lines
878 B
C
Raw Normal View History

2021-10-19 21:27:23 +01:00
// List.h
2023-09-24 03:13:03 +01:00
#ifndef ZIP7_INC_LIST_H
#define ZIP7_INC_LIST_H
2021-10-19 21:27:23 +01:00
#include "../../../Common/Wildcard.h"
#include "../Common/LoadCodecs.h"
2023-09-24 03:13:03 +01:00
struct CListOptions
{
bool ExcludeDirItems;
bool ExcludeFileItems;
CListOptions():
ExcludeDirItems(false),
ExcludeFileItems(false)
{}
};
HRESULT ListArchives(
const CListOptions &listOptions,
CCodecs *codecs,
2021-10-19 21:27:23 +01:00
const CObjectVector<COpenType> &types,
const CIntVector &excludedFormats,
bool stdInMode,
UStringVector &archivePaths, UStringVector &archivePathsFull,
bool processAltStreams, bool showAltStreams,
const NWildcard::CCensorNode &wildcardCensor,
bool enableHeaders, bool techMode,
2023-09-24 03:13:03 +01:00
#ifndef Z7_NO_CRYPTO
2021-10-19 21:27:23 +01:00
bool &passwordEnabled, UString &password,
2023-09-24 03:13:03 +01:00
#endif
#ifndef Z7_SFX
2021-10-19 21:27:23 +01:00
const CObjectVector<CProperty> *props,
2023-09-24 03:13:03 +01:00
#endif
2021-10-19 21:27:23 +01:00
UInt64 &errors,
UInt64 &numWarnings);
#endif