// // System.Runtime.InteropServices.ITypeLibImporterNotifySink.cs // // Author: // Kevin Winchester (kwin@ns.sympatico.ca) // // (C) 2002 Kevin Winchester // using System.Reflection; namespace System.Runtime.InteropServices { //[Guid("")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface ITypeLibImporterNotifySink { void ReportEvent(ImporterEventKind eventKind, int eventCode, string eventMsg); Assembly ResolveRef(object typeLib); } }