msvc compatibility
Modified: trunk/reactos/include/reactos/debug.h
_____
Modified: trunk/reactos/include/reactos/debug.h
--- trunk/reactos/include/reactos/debug.h 2005-11-27 05:50:19 UTC
(rev 19670)
+++ trunk/reactos/include/reactos/debug.h 2005-11-27 05:53:01 UTC
(rev 19671)
@@ -94,8 +94,17 @@
#else
/* On non-debug builds, we never show these */
+#ifdef _MSC_VER
+static __inline void DPRINT1 ( const char* fmt, ... )
+{
+}
+static __inline void DPRINT ( const char* fmt, ... )
+{
+}
+#else
#define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } }
while(0)
#define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } }
while(0)
+#endif
#define CHECKPOINT1
#define CHECKPOINT
#define UNIMPLEMENTED