summaryrefslogtreecommitdiff
path: root/src/vm/nativeeventsource.h
blob: fdd46df6809ac93e6bc57c71c92ba40dc07aed51 (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

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
// File: nativeeventsource.h
// Abstract: This module implements native part of Event Source support in VM
//

//

//
// ============================================================================
#ifndef _NATIVEEVENTSOURCE_H_
#define _NATIVEEVENTSOURCE_H_

#if defined(FEATURE_EVENTSOURCE_XPLAT)
class XplatEventSourceLogger
{
public:
    static void QCALLTYPE LogEventSource(__in_z int eventID, __in_z LPCWSTR eventName, __in_z LPCWSTR eventSourceName, __in_z LPCWSTR payload);
    static BOOL QCALLTYPE IsEventSourceLoggingEnabled();
};

#endif //defined(FEATURE_EVENTSOURCE_XPLAT)
#endif //_NATIVEEVENTSOURCE_H_