mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
21 lines
466 B
C
Executable File
21 lines
466 B
C
Executable File
// List.h
|
|
|
|
#ifndef __LIST_H
|
|
#define __LIST_H
|
|
|
|
#include "Common/Wildcard.h"
|
|
#include "../Common/LoadCodecs.h"
|
|
|
|
HRESULT ListArchives(CCodecs *codecs, const CIntVector &formatIndices,
|
|
bool stdInMode,
|
|
UStringVector &archivePaths, UStringVector &archivePathsFull,
|
|
const NWildcard::CCensorNode &wildcardCensor,
|
|
bool enableHeaders, bool techMode,
|
|
#ifndef _NO_CRYPTO
|
|
bool &passwordEnabled, UString &password,
|
|
#endif
|
|
UInt64 &errors);
|
|
|
|
#endif
|
|
|