summaryrefslogtreecommitdiff
path: root/src/vm/nativeeventsource.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/nativeeventsource.h')
-rw-r--r--src/vm/nativeeventsource.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/vm/nativeeventsource.h b/src/vm/nativeeventsource.h
new file mode 100644
index 0000000000..fdd46df680
--- /dev/null
+++ b/src/vm/nativeeventsource.h
@@ -0,0 +1,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_