mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 21:09:56 -06:00
19 lines
316 B
C++
Executable File
19 lines
316 B
C++
Executable File
#ifndef _RAR_LOG_
|
|
#define _RAR_LOG_
|
|
|
|
void InitLogOptions(char *LogName);
|
|
|
|
#ifndef SILENT
|
|
void Log(const char *ArcName,const char *Format,...);
|
|
#endif
|
|
|
|
#ifdef SILENT
|
|
#ifdef __GNUC__
|
|
#define Log(args...)
|
|
#else
|
|
inline void Log(const char *a,const char *b,const char *c=NULL,const char *d=NULL) {}
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|