filestr.hpp 338 B

1234567891011121314151617
  1. #ifndef _RAR_FILESTR_
  2. #define _RAR_FILESTR_
  3. bool ReadTextFile(
  4. const wchar *Name,
  5. StringList *List,
  6. bool Config,
  7. bool AbortOnError=false,
  8. RAR_CHARSET SrcCharset=RCH_DEFAULT,
  9. bool Unquote=false,
  10. bool SkipComments=false,
  11. bool ExpandEnvStr=false
  12. );
  13. RAR_CHARSET DetectTextEncoding(const byte *Data,size_t DataSize);
  14. #endif