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

ClassInterfaceType.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 963c2880a1a7beb5f20d9f8a8c06681d1aa5a940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// System.Runtime.InteropServices.ClassInterfaceType.cs
//
// Author:
//   Nick Drochak (ndrochak@gol.com)
//
// (C) 2002 Nick Drochak
//


namespace System.Runtime.InteropServices {

	[Serializable]
	public enum ClassInterfaceType 
	{
		None = 0,
  
		AutoDispatch = 1,
 
		AutoDual = 2

	} // ClassInterfaceType

} // System.Runtime.InteropServices