aboutsummaryrefslogtreecommitdiff
path: root/Src/external_dependencies/openmpt-trunk/include/unrar/log.hpp
blob: 008ef11a0c7694c95b76126ad3f17eb56a87abb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#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