Sync with trunk r63343.
[reactos.git] / dll / win32 / ws2_32 / include / debug.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS WinSock 2 DLL
4 * FILE: include/debug.h
5 * PURPOSE: Debugging support macros
6 * DEFINES: DBG - Enable debug output
7 * NASSERT - Disable assertions
8 */
9
10 #ifndef __DEBUG_H
11 #define __DEBUG_H
12
13 #define NORMAL_MASK 0x000000FF
14 #define SPECIAL_MASK 0xFFFFFF00
15 #define MIN_TRACE 0x00000001
16 #define MID_TRACE 0x00000002
17 #define MAX_TRACE 0x00000003
18
19 #define DEBUG_CHECK 0x00000100
20 #define DEBUG_ULTRA 0xFFFFFFFF
21
22 #ifdef ASSERT
23 #undef ASSERT
24 #endif
25
26 #if DBG
27
28 extern DWORD DebugTraceLevel;
29
30 #define WS_DbgPrint(_t_, _x_) \
31 if (((DebugTraceLevel & NORMAL_MASK) >= _t_) || \
32 ((DebugTraceLevel & _t_) > NORMAL_MASK)) { \
33 DbgPrint("(%hS:%d)(%hS) ", __FILE__, __LINE__, __FUNCTION__); \
34 DbgPrint _x_; \
35 }
36
37 #ifdef NASSERT
38 #define ASSERT(x)
39 #else /* NASSERT */
40 #define ASSERT(x) if (!(x)) { WS_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); ExitProcess(0); }
41 #endif /* NASSERT */
42
43 #else /* DBG */
44
45 #define WS_DbgPrint(_t_, _x_)
46
47 #define ASSERT_IRQL(x)
48 #define ASSERT(x)
49
50 #endif /* DBG */
51
52
53 #define assert(x) ASSERT(x)
54 #define assert_irql(x) ASSERT_IRQL(x)
55
56
57 #define UNIMPLEMENTED \
58 WS_DbgPrint(MIN_TRACE, ("is unimplemented, please try again later.\n"));
59
60 #define CHECKPOINT \
61 WS_DbgPrint(DEBUG_CHECK, ("\n"));
62
63 #define CP CHECKPOINT
64
65 #endif /* __DEBUG_H */