mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Silence debug messages
svn path=/trunk/; revision=9391
This commit is contained in:
parent
1c108dfcbd
commit
5884627fe6
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue