winamp/Src/external_dependencies/openmpt-trunk/include/unrar/log.hpp
2024-09-24 14:54:57 +02:00

12 lines
252 B
C++
Vendored

#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