summaryrefslogtreecommitdiffstats
path: root/private/os2/inc/ldrdbg.h
blob: 58f3765b63f2c19e0386ad14af0fbed34eb69a4d (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
/*++

Copyright (c) 1989  Microsoft Corporation

Module Name:

    ldrdbg.h

Abstract:

    Debug constants

Author:

    Beni Lavi (BeniL) 5-Nov-92

Revision History:

--*/

#if DBG

#define OL2_DEBUG_TRACE             0x00000001
#define OL2_DEBUG_MEMORY            0x00000002
#define OL2_DEBUG_MTE               0x00000004
#define OL2_DEBUG_FIXUP             0x00000008

ULONG Ol2Debug;
#define IF_OL2_DEBUG( ComponentFlag ) \
    if (Ol2Debug & (OL2_DEBUG_ ## ComponentFlag))

#else

#define IF_OL2_DEBUG( ComponentFlag ) if (FALSE)

#endif