mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-10 02:57:21 +00:00
this will allow us to diff against newer version of unrarsrc if we wish to update our port
16 lines
271 B
C++
16 lines
271 B
C++
#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
|