Welcome to mirror list, hosted at ThFree Co, Russian Federation.

log.hpp « unrar « thirdparty « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 008ef11a0c7694c95b76126ad3f17eb56a87abb9 (plain)
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