log.hpp 252 B

123456789101112
  1. #ifndef _RAR_LOG_
  2. #define _RAR_LOG_
  3. void InitLogOptions(const wchar *LogFileName,RAR_CHARSET CSet);
  4. #ifdef SILENT
  5. inline void Log(const wchar *ArcName,const wchar *fmt,...) {}
  6. #else
  7. void Log(const wchar *ArcName,const wchar *fmt,...);
  8. #endif
  9. #endif