Author: spetreolle
Date: Tue Feb 2 20:51:50 2016
New Revision: 70677
URL:
http://svn.reactos.org/svn/reactos?rev=70677&view=rev
Log:
MSVC: Properly define debug functions for release builds.
Modified:
trunk/reactos/include/reactos/debug.h
Modified: trunk/reactos/include/reactos/debug.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/debug.h?re…
==============================================================================
--- trunk/reactos/include/reactos/debug.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/debug.h [iso-8859-1] Tue Feb 2 20:51:50 2016
@@ -137,15 +137,15 @@
#define UNIMPLEMENTED
- #define ERR_ __noop
- #define WARN_ __noop
- #define TRACE_ __noop
- #define INFO_ __noop
-
- #define ERR__ __noop
- #define WARN__ __noop
- #define TRACE__ __noop
- #define INFO__ __noop
+ #define ERR_(ch, ...) __noop
+ #define WARN_(ch, ...) __noop
+ #define TRACE_(ch, ...) __noop
+ #define INFO_(ch, ...) __noop
+
+ #define ERR__(ch, ...) __noop
+ #define WARN__(ch, ...) __noop
+ #define TRACE__(ch, ...) __noop
+ #define INFO__(ch, ...) __noop
#else
#define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
#define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)