mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 00:07:09 -06:00
14 lines
300 B
C
Executable File
14 lines
300 B
C
Executable File
// List.h
|
|
|
|
#ifndef __LIST_H
|
|
#define __LIST_H
|
|
|
|
#include "Common/Wildcard.h"
|
|
|
|
HRESULT ListArchives(UStringVector &archivePaths, UStringVector &archivePathsFull,
|
|
const NWildcard::CCensorNode &wildcardCensor,
|
|
bool enableHeaders, bool techMode, bool &passwordEnabled, UString &password);
|
|
|
|
#endif
|
|
|