2007-03-23 22:26:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
2007-04-04 21:28:10 +00:00
|
|
|
#ifndef _VC71 // __VA_ARGS__ not supported on MSVC++ .NET 7.x
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#define LOG(format, ...) LogOutput(format, __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define LOG(...)
|
|
|
|
#endif
|
2007-03-23 22:26:35 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
extern void LogOutput(LPCTSTR format, ...);
|
2013-03-18 23:17:18 +00:00
|
|
|
extern void LogFileOutput(LPCTSTR format, ...);
|