Coverage Report

Created: 2023-12-08 06:48

/src/clamav/libclamunrar/log.hpp
Line
Count
Source (jump to first uncovered line)
1
#ifndef _RAR_LOG_
2
#define _RAR_LOG_
3
4
void InitLogOptions(const wchar *LogFileName,RAR_CHARSET CSet);
5
6
#ifdef SILENT
7
0
inline void Log(const wchar *ArcName,const wchar *fmt,...) {}
8
#else
9
void Log(const wchar *ArcName,const wchar *fmt,...);
10
#endif
11
12
#endif