22 lines
499 B
C
22 lines
499 B
C
// EnumDirItems.h
|
|
|
|
#ifndef __ENUM_DIR_ITEMS_H
|
|
#define __ENUM_DIR_ITEMS_H
|
|
|
|
#include "../../../Common/Wildcard.h"
|
|
|
|
#include "../../../Windows/FileFind.h"
|
|
|
|
#include "DirItem.h"
|
|
|
|
void AddDirFileInfo(int phyParent, int logParent, int secureIndex,
|
|
const NWindows::NFile::NFind::CFileInfo &fi, CObjectVector<CDirItem> &dirItems);
|
|
|
|
HRESULT EnumerateItems(
|
|
const NWildcard::CCensor &censor,
|
|
NWildcard::ECensorPathMode pathMode,
|
|
const UString &addPathPrefix,
|
|
CDirItems &dirItems);
|
|
|
|
#endif
|