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

TypeLibExporterFlags.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f7c76954123b89f28a9860236e37fab52addc08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Runtime.InteropServices.TypeLibExporterFlags.cs
//
// Author:
//   Kevin Winchester (kwin@ns.sympatico.ca)
//
// (C) 2002 Kevin Winchester
//

namespace System.Runtime.InteropServices
{
	[Flags] [Serializable]
	public enum TypeLibExporterFlags {
		OnlyReferenceRegistered = 1,
	}
}