Codebase list unrar-nonfree / debian/1%6.1.7-3 log.hpp
debian/1%6.1.7-3

Tree @debian/1%6.1.7-3 (Download .tar.gz)

log.hpp @debian/1%6.1.7-3raw · history · blame

#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