mirror of
https://github.com/hashcat/hashcat
synced 2024-11-02 20:39:22 +01:00
13 lines
252 B
C++
13 lines
252 B
C++
#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
|