mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 17:10:22 +00:00
Another try to fix release builds to please Colin_Finck...
svn path=/trunk/; revision=26842
This commit is contained in:
parent
413eb57968
commit
5cb63e5d4a
2 changed files with 6 additions and 2 deletions
|
@ -356,4 +356,10 @@ VOID DebugDumpBuffer(ULONG Mask, PVOID Buffer, ULONG Length)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
VOID DebugPrint(ULONG Mask, char *format, ...)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#endif // defined DBG
|
#endif // defined DBG
|
||||||
|
|
|
@ -76,8 +76,6 @@ void MEMORY_WRITE_BREAKPOINT4(unsigned long addr);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
inline VOID DebugPrint(ULONG Mask, char *format, ...) {}
|
|
||||||
|
|
||||||
#define DebugInit()
|
#define DebugInit()
|
||||||
#define DbgPrint(_x_) { if (0) DebugPrint _x_; }
|
#define DbgPrint(_x_) { if (0) DebugPrint _x_; }
|
||||||
#define DPRINT1(_x_) { if (0) printf _x_; }
|
#define DPRINT1(_x_) { if (0) printf _x_; }
|
||||||
|
|
Loading…
Reference in a new issue