ReactOS 0.4.15-dev-7788-g1ad9096
dbgtrace.h
Go to the documentation of this file.
1/*++
2
3Copyright (c) Microsoft Corporation. All rights reserved.
4
5Module Name:
6
7 DbgTrace.h
8
9Abstract:
10
11 This file can be used to redirect WPP traces to
12 debugger.
13
14
15
16
17
18
19
20Author:
21
22
23
24Environment:
25
26 Both kernel and user mode
27
28Revision History:
29
30--*/
31
32#if !defined(EVENT_TRACING)
33
34
35
36
37
38
39
40#if !defined(TRACE_LEVEL_NONE)
41 #define TRACE_LEVEL_NONE 0
42 #define TRACE_LEVEL_CRITICAL 1
43 #define TRACE_LEVEL_FATAL 1
44 #define TRACE_LEVEL_ERROR 2
45 #define TRACE_LEVEL_WARNING 3
46 #define TRACE_LEVEL_INFORMATION 4
47 #define TRACE_LEVEL_VERBOSE 5
48 #define TRACE_LEVEL_RESERVED6 6
49 #define TRACE_LEVEL_RESERVED7 7
50 #define TRACE_LEVEL_RESERVED8 8
51 #define TRACE_LEVEL_RESERVED9 9
52#endif
53
54
55//
56// Define Debug Flags
57//
58#define TRACINGDEVICE 0x00000001
59#define TRACINGOBJECT 0x00000002
60#define TRACINGAPIERROR 0x00000004
61#define TRACINGHANDLE 0x00000008
62#define TRACINGPOOL 0x00000010
63#define TRACINGERROR 0x00000020
64#define TRACINGUSEROBJECT 0x00000040
65#define TRACINGREQUEST 0x00000080
66#define TRACINGIO 0x00000100
67#define TRACINGPNP 0x00000200
68#define TRACINGDRIVER 0x00001000
69#define TRACINGPNPPOWERSTATES 0x00002000
70
71#define TRACINGDMA 0x00004000 // __REACTOS__
72#define TRACINGIOTARGET 0x00008000 // __REACTOS__
73
74extern "C" {
75void
78 __in PVOID FxDriverGlobals,
79 __in ULONG DebugPrintLevel,
80 __in ULONG DebugPrintFlag,
82 __in PCSTR DebugMessage,
83 ...
84 );
85}
86
87//
88// When linking the lib with UMDF framework we don't want these macros
89// to be defined since UMDF WPP tracing uses these macros
90
91
92
93//
94#ifndef UMDF
95#define WPP_INIT_TRACING(DriverObject, RegistryPath)
96#define WPP_CLEANUP(DriverObject)
97#endif
98
99extern "C" {
100extern ULONG DebugLevel;
101extern ULONG DebugFlag;
102}
103
104#endif
#define __cdecl
Definition: accygwin.h:79
#define __in
Definition: dbghelp.h:35
void __cdecl DoTraceLevelMessage(__in PVOID FxDriverGlobals, __in ULONG DebugPrintLevel, __in ULONG DebugPrintFlag, __drv_formatString(FormatMessage) __in PCSTR DebugMessage,...)
Definition: dbgtrace.cpp:34
ULONG DebugLevel
Definition: fbtusb.c:26
ULONG DebugFlag
Definition: fxobject.cpp:44
#define __drv_formatString(kind)
Definition: driverspecs.h:271
const char * PCSTR
Definition: typedefs.h:52
uint32_t ULONG
Definition: typedefs.h:59
#define FormatMessage
Definition: winbase.h:3730