Guarded devirtualization foundations (#21270)
[platform/upstream/coreclr.git] / src / System.Private.CoreLib / src / System / Runtime / InteropServices / NativeMethods.cs
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4
5 #if FEATURE_COMINTEROP
6
7 namespace System.Runtime.InteropServices
8 {
9     /// <summary>
10     /// Part of ComEventHelpers APIs which allow binding managed delegates
11     /// to COM's connection point based events.
12     /// </summary>
13     internal static class NativeMethods
14     {
15         [ComImport]
16         [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
17         [Guid("00020400-0000-0000-C000-000000000046")]
18         internal interface IDispatch
19         {
20         }
21     }
22 }
23
24 #endif