mirror of
https://github.com/holub/mame
synced 2025-05-01 20:27:02 +03:00
21 lines
466 B
C
21 lines
466 B
C
// 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
|
|
|