Windows2003-3790/inetcore/wininet/apdetect/debug.h
2020-09-30 16:53:55 +02:00

63 lines
1.4 KiB
C

/*++
Copyright (c) 1994 Microsoft Corporation
Module Name:
debug.h
Abstract:
This file contains debugging macros for the DHCP server.
Author:
Manny Weiser (mannyw) 10-Oct-1992
Environment:
User Mode - Win32
Revision History:
Madan Appiah (madana) 21-Oct-1993
--*/
#if DBG
//
// Critical debug output flags.
//
#define DEBUG_ERRORS 0x00000001
#define DEBUG_PROTOCOL 0x00000002
#define DEBUG_LEASE 0x00000004
#define DEBUG_MISC 0x00000008
#define DEBUG_INIT 0x00000010
#define DEBUG_TIMESTAMP 0x00000020
#define DEBUG_ASSERT 0x00001000
#define DEBUG_TRACK 0x00002000
//
// more verbose debug output flags.
//
#define DEBUG_PROTOCOL_DUMP 0x00010000
#define DEBUG_STACK 0x00020000
#define DEBUG_TCP_INFO 0x00040000
#define DEBUG_DNS 0x00080000
#define DEBUG_BACKDOOR 0x01000000
#define DEBUG_ALLOC 0x02000000
#define DEBUG_PERF 0x04000000
#define DEBUG_TRACE 0x08000000
#define DEBUG_API 0x10000000
#define DEBUG_OPTIONS 0x20000000
#define DEBUG_BREAK_POINT 0x40000000
#define DEBUG_TRACE_CALLS 0x80000000
#endif DBG