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

UCOMITypeLib.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1889235e9cf9a3526aaecaefa97e7aa265d3a77 (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
25
26
27
28

// System.Runtime.InteropServices.UCOMITypeLib.cs
//
// Paolo Molaro (lupus@ximian.com)
//
// (C) 2002 Ximian, Inc.

using System;

namespace System.Runtime.InteropServices
{

	[Guid("00020402-0000-0000-c000-000000000046")]
	[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
	public interface UCOMITypeLib { 
		void FindName( string szNameBuf, int lHashVal, out UCOMITypeInfo[] ppTInfo, out int[] rgMemId, ref short pcFound);
		void GetDocumentation( int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile);
		void GetLibAttr( out IntPtr ppTLibAttr);
		void GetTypeComp( out UCOMITypeComp ppTComp); 
		void GetTypeInfo( int index, out UCOMITypeInfo ppTI);
		int GetTypeInfoCount();
		void GetTypeInfoOfGuid( ref Guid guid, out UCOMITypeInfo ppTInfo);
		void GetTypeInfoType( int index, out TYPEKIND pTKind);
		bool IsName( string szNameBuf, int lHashVal);
		void ReleaseTLibAttr( IntPtr pTLibAttr);
	}
}