[INCLUDE]

Does this fix MSVC builds?

svn path=/trunk/; revision=70475
This commit is contained in:
Eric Kohl 2015-12-31 22:39:12 +00:00
parent 93c88d5c67
commit 61f58e20ec

View file

@ -50,8 +50,13 @@ pSetupDebugPrint(
#define TOWL1(p) TOWL2(p)
#define TOWL2(p) L##p
#if (defined(_MSC_VER)
#define LogItem(lpTag, lpMessageText, ...) \
pSetupDebugPrint(__WFILE__, __LINE__, lpTag, lpMessageText, __VA_ARGS__)
#else
#define LogItem(lpTag, lpMessageText...) \
pSetupDebugPrint(__WFILE__, __LINE__, lpTag, lpMessageText)
#endif
#endif /* __SYSSETUP_H_INCLUDED__ */