mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
338 B
18 lines
338 B
![]()
7 years ago
|
#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
|
||
|
);
|
||
|
|
||
|
RAR_CHARSET DetectTextEncoding(const byte *Data,size_t DataSize);
|
||
|
|
||
|
#endif
|