mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-02-28 19:30:11 +00:00
10 lines
173 B
C
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, ...);
|