2009-11-10 16:48:42 +01:00
|
|
|
#ifndef _RAR_LOG_
|
|
|
|
#define _RAR_LOG_
|
|
|
|
|
2020-07-15 00:40:26 +02:00
|
|
|
void InitLogOptions(const wchar *LogFileName,RAR_CHARSET CSet);
|
2009-11-10 16:48:42 +01:00
|
|
|
|
|
|
|
#ifdef SILENT
|
2020-07-15 00:40:26 +02:00
|
|
|
inline void Log(const wchar *ArcName,const wchar *fmt,...) {}
|
2009-11-10 16:48:42 +01:00
|
|
|
#else
|
2020-07-15 00:40:26 +02:00
|
|
|
void Log(const wchar *ArcName,const wchar *fmt,...);
|
2009-11-10 16:48:42 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|