mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-04-22 22:19:37 +00:00
this will allow us to diff against newer version of unrarsrc if we wish to update our port
13 lines
252 B
C++
13 lines
252 B
C++
#ifndef _RAR_LOG_
|
|
#define _RAR_LOG_
|
|
|
|
void InitLogOptions(const wchar *LogFileName,RAR_CHARSET CSet);
|
|
|
|
#ifdef SILENT
|
|
inline void Log(const wchar *ArcName,const wchar *fmt,...) {}
|
|
#else
|
|
void Log(const wchar *ArcName,const wchar *fmt,...);
|
|
#endif
|
|
|
|
#endif
|