Another try to fix release builds to please Colin_Finck...

svn path=/trunk/; revision=26842
This commit is contained in:
Hervé Poussineau 2007-05-19 20:45:17 +00:00
parent 413eb57968
commit 5cb63e5d4a
2 changed files with 6 additions and 2 deletions

View file

@ -356,4 +356,10 @@ VOID DebugDumpBuffer(ULONG Mask, PVOID Buffer, ULONG Length)
}
}
#else
VOID DebugPrint(ULONG Mask, char *format, ...)
{
}
#endif // defined DBG

View file

@ -76,8 +76,6 @@ void MEMORY_WRITE_BREAKPOINT4(unsigned long addr);
#else
inline VOID DebugPrint(ULONG Mask, char *format, ...) {}
#define DebugInit()
#define DbgPrint(_x_) { if (0) DebugPrint _x_; }
#define DPRINT1(_x_) { if (0) printf _x_; }