Silence debug messages

svn path=/trunk/; revision=9391
This commit is contained in:
Gé van Geldorp 2004-05-15 07:49:05 +00:00
parent 1c108dfcbd
commit 5884627fe6

View file

@ -18,9 +18,13 @@
#include <tcp.h> #include <tcp.h>
#include <rosrtl/string.h> #include <rosrtl/string.h>
#ifdef DBG #define NDEBUG
#ifndef NDEBUG
DWORD DebugTraceLevel = 0x7fffffff; DWORD DebugTraceLevel = 0x7fffffff;
#endif /* DBG */ #else
DWORD DebugTraceLevel = MIN_TRACE;
#endif /* NDEBUG */
PDEVICE_OBJECT TCPDeviceObject = NULL; PDEVICE_OBJECT TCPDeviceObject = NULL;
PDEVICE_OBJECT UDPDeviceObject = NULL; PDEVICE_OBJECT UDPDeviceObject = NULL;