Home | History | Annotate | Download | only in Console
      1 // List.h
      2 
      3 #ifndef __LIST_H
      4 #define __LIST_H
      5 
      6 #include "Common/Wildcard.h"
      7 #include "../Common/LoadCodecs.h"
      8 
      9 HRESULT ListArchives(CCodecs *codecs, const CIntVector &formatIndices,
     10     bool stdInMode,
     11     UStringVector &archivePaths, UStringVector &archivePathsFull,
     12     const NWildcard::CCensorNode &wildcardCensor,
     13     bool enableHeaders, bool techMode,
     14     #ifndef _NO_CRYPTO
     15     bool &passwordEnabled, UString &password,
     16     #endif
     17     UInt64 &errors);
     18 
     19 #endif
     20 
     21