AppleWin/source/Log.h
2007-03-23 22:26:35 +00:00

10 lines
173 B
C

#pragma once
#if _DEBUG
#define LOG(format, ...) LogOutput(format, __VA_ARGS__)
#else
#define LOG(...)
#endif
extern void LogOutput(LPCTSTR format, ...);