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 #ifndef _SIR_WINEVENTLOG_H_INCLUDED
33 # define _SIR_WINEVENTLOG_H_INCLUDED
34
35
36 EXTERN_C __declspec(selectany) const GUID SIR_EVENTLOG_GUID = {
37 0x7ef5932c, 0xc0f3, 0x4c8b, {0xa0, 0xf7, 0x7c, 0xfa, 0xe9, 0xc6, 0x0b, 0x0e}
38 };
39
40 # ifndef SIR_EVENTLOG_GUID_Traits
41 # define SIR_EVENTLOG_GUID_Traits NULL
42 # endif
43
44 # define SIR_EVENTLOG_GUID_CHANNEL_Application 0x9
45 # define SIR_EVENTLOG_GUID_CHANNEL_Application_KEYWORD 0x8000000000000000
46
47 # define SIR_DEBUG_CHANNEL 0x10
48 # define SIR_DEBUG_CHANNEL_KEYWORD 0x4000000000000000
49
50 EXTERN_C __declspec(selectany) const EVENT_DESCRIPTOR SIR_EVT_CRITICAL = {
51 0x1, 0x1, 0x9, 0x1, 0x0, 0x0, 0x8000000000000000
52 };
53 # define SIR_EVT_CRITICAL_value 0x1
54
55 EXTERN_C __declspec(selectany) const EVENT_DESCRIPTOR SIR_EVT_ERROR = {
56 0x2, 0x1, 0x9, 0x2, 0x0, 0x0, 0x8000000000000000
57 };
58 # define SIR_EVT_ERROR_value 0x2
59
60 EXTERN_C __declspec(selectany) const EVENT_DESCRIPTOR SIR_EVT_WARNING = {
61 0x3, 0x1, 0x9, 0x3, 0x0, 0x0, 0x8000000000000000
62 };
63 # define SIR_EVT_WARNING_value 0x3
64
65 EXTERN_C __declspec(selectany) const EVENT_DESCRIPTOR SIR_EVT_INFO = {
66 0x4, 0x1, 0x9, 0x4, 0x0, 0x0, 0x8000000000000000
67 };
68 # define SIR_EVT_INFO_value 0x4
69
70 EXTERN_C __declspec(selectany) const EVENT_DESCRIPTOR SIR_EVT_DEBUG = {
71 0x5, 0x1, 0x10, 0x5, 0x0, 0x0, 0x4000000000000000
72 };
73 # define SIR_EVT_DEBUG_value 0x5
74
75 # define MSG_sir_winlog_provider_event_1_message 0x00000001L
76 # define MSG_sir_winlog_provider_event_2_message 0x00000002L
77 # define MSG_sir_winlog_provider_event_3_message 0x00000003L
78 # define MSG_sir_winlog_provider_event_4_message 0x00000004L
79 # define MSG_sir_winlog_provider_event_5_message 0xB0010005L
80 # define MSG_opcode_Info 0x30000000L
81 # define MSG_level_Critical 0x50000001L
82 # define MSG_level_Error 0x50000002L
83 # define MSG_level_Warning 0x50000003L
84 # define MSG_level_Informational 0x50000004L
85 # define MSG_level_Verbose 0x50000005L
86 # define MSG_task_None 0x70000000L
87 # define MSG_channel_Application 0x90000001L
88 # define MSG_sir_winlog_provider_channel_SIR_DEBUG_CHANNEL_message 0x90000002L
89
90 #endif