12345678910111213141516171819 |
- #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
|