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

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

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

using System;

namespace System.Runtime.InteropServices
{

	//[Guid("")]
	[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
	public interface UCOMITypeLib { 
		void FindName( string szNameBuf, int lHashVal, UCOMITypeInfo[] ppTInfo, 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);
		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);
	}
}