Welcome to mirror list, hosted at ThFree Co, Russian Federation.

filestr.hpp « unrar « thirdparty « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8dfdf64bde422729ae20e7ea4aaafa138189b379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _RAR_FILESTR_
#define _RAR_FILESTR_

bool ReadTextFile(
  const wchar *Name,
  StringList *List,
  bool Config,
  bool AbortOnError=false,
  RAR_CHARSET SrcCharset=RCH_DEFAULT,
  bool Unquote=false,
  bool SkipComments=false,
  bool ExpandEnvStr=false
);

#endif