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

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

namespace System.Runtime.InteropServices
{
	[Serializable] public enum ComInterfaceType
	{
		InterfaceIsDual = 0,
		InterfaceIsIUnknown = 1,
		InterfaceIsIDispatch = 2,		
	}
}