blob: 32223782cfb3b2a67de6e709022995d1ef52c23b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//*************************************************************
//
// Debugging functions header file
//
// Microsoft Confidential
// Copyright (c) Microsoft Corporation 1995
// All rights reserved
//
//*************************************************************
#if DBG
//
// Debug Levels
//
#define DL_NONE 0x00000000
#define DL_NORMAL 0x00000001
#define DL_VERBOSE 0x00000002
#define DL_LOGFILE 0x00010000
//
// Debug message types
//
#define DM_WARNING 0
#define DM_ASSERT 1
#define DM_VERBOSE 2
//
// Debug macros
//
#define DebugMsg(x) _DebugMsg x
//
// Debug function proto-types
//
void _DebugMsg(UINT mask, LPCTSTR pszMsg, ...);
void InitDebugSupport(void);
#else
#define DebugMsg(x)
#endif // DBG
|