blob: aeefbf27256a9c686b9df1ba7f8b0c233f6c10d2 (
plain)
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
|
/*++
Copyright (C) 2004 Microsoft Corporation
Module Name:
trace.h
Abstract:
Header file included by the Microsoft Device Specific Module (DSM).
This file contains Windows tracing related defines.
Environment:
kernel mode only
Notes:
--*/
//
// Set component ID for DbgPrintEx calls
//
#define DEBUG_COMP_ID DPFLTR_MSDSM_ID
//
// Include header file and setup GUID for tracing
//
#include <storswtr.h>
#define WPP_GUID_MSDSM (DEDADFF5, F99F, 4600, B8C9, 2D4D9B806B5B)
#define WPP_CONTROL_GUIDS WPP_CONTROL_GUIDS_NORMAL_FLAGS(WPP_GUID_MSDSM)
|