Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ITypeLibExporterNotifySink.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 547b87d73d3bcfee2863df8f62c966727297922f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Runtime.InteropServices.ITypeLibExporterNotifySink.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 ITypeLibExporterNotifySink {
		void ReportEvent (ExporterEventKind eventKind, int eventCode, string eventMsg);
		object ResolveRef (Assembly assembly);
	}
}