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

ImporterEventKind.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c896b7e053f6f716157e8fc00d22ffd9c994df22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// System.Runtime.InteropServices.ImporterEventKind.cs
//
// Author: Duncan Mak (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

namespace System.Runtime.InteropServices
{
	[Serializable] public enum ImporterEventKind
	{
		NOTIF_TYPECONVERTED = 0,
		NOTIF_CONVERTWARNING = 1,
		ERROR_REFTOINVALIDTYPELIB = 2,	      
	}
}