mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 12:11:39 -06:00
32 lines
490 B
C++
Executable File
32 lines
490 B
C++
Executable File
// List.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __LIST_H
|
|
#define __LIST_H
|
|
|
|
#include "../../Archive/IArchive.h"
|
|
#include "Common/Wildcard.h"
|
|
#include "Windows/FileFind.h"
|
|
|
|
/*
|
|
namespace NListMode
|
|
{
|
|
enum EEnum
|
|
{
|
|
kDefault,
|
|
kAdd,
|
|
kAll
|
|
};
|
|
}
|
|
*/
|
|
|
|
HRESULT ListArchive(IInArchive *archive,
|
|
const UString &defaultItemName,
|
|
const NWindows::NFile::NFind::CFileInfoW &srchiveFileInfo,
|
|
const NWildcard::CCensor &wildcardCensor/*, bool fullPathMode,
|
|
NListMode::EEnum mode*/);
|
|
|
|
#endif
|
|
|