fixed member accessibility to match MS (corcompare).
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / ITypeLibExporterNotifySink.cs
1 //\r
2 // System.Runtime.InteropServices.ITypeLibExporterNotifySink.cs\r
3 //\r
4 // Author:\r
5 //   Kevin Winchester (kwin@ns.sympatico.ca)\r
6 //\r
7 // (C) 2002 Kevin Winchester\r
8 //\r
9 \r
10 using System.Reflection;\r
11 \r
12 namespace System.Runtime.InteropServices {\r
13 \r
14         //[Guid("")]\r
15         [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]\r
16         public interface ITypeLibExporterNotifySink {\r
17                 void ReportEvent (ExporterEventKind eventKind, int eventCode, string eventMsg);\r
18                 object ResolveRef (Assembly assembly);\r
19         }\r
20 }\r