tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

List.h (696B)


      1 // List.h
      2 
      3 #ifndef __LIST_H
      4 #define __LIST_H
      5 
      6 #include "../../../Common/Wildcard.h"
      7 
      8 #include "../Common/LoadCodecs.h"
      9 
     10 HRESULT ListArchives(CCodecs *codecs,
     11    const CObjectVector<COpenType> &types,
     12    const CIntVector &excludedFormats,
     13    bool stdInMode,
     14    UStringVector &archivePaths, UStringVector &archivePathsFull,
     15    bool processAltStreams, bool showAltStreams,
     16    const NWildcard::CCensorNode &wildcardCensor,
     17    bool enableHeaders, bool techMode,
     18    #ifndef _NO_CRYPTO
     19    bool &passwordEnabled, UString &password,
     20    #endif
     21    #ifndef _SFX
     22    const CObjectVector<CProperty> *props,
     23    #endif
     24    UInt64 &errors,
     25    UInt64 &numWarnings);
     26 
     27 #endif