**** Merged from MCS ****
[mono-project.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMITypeInfo.cs
blob33a22bf14f1ed23e5f1d02fb6f90b28e31febc55
2 //
3 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining
6 // a copy of this software and associated documentation files (the
7 // "Software"), to deal in the Software without restriction, including
8 // without limitation the rights to use, copy, modify, merge, publish,
9 // distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so, subject to
11 // the following conditions:
12 //
13 // The above copyright notice and this permission notice shall be
14 // included in all copies or substantial portions of the Software.
15 //
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 // System.Runtime.InteropServices.UCOMITypeInfo.cs
27 // Paolo Molaro (lupus@ximian.com)
29 // (C) 2002 Ximian, Inc.
31 using System;
33 namespace System.Runtime.InteropServices
36 [Guid("00020401-0000-0000-c000-000000000046")]
37 [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
38 public interface UCOMITypeInfo {
39 void AddressOfMember (int memid, INVOKEKIND invKind, out IntPtr ppv);
40 void CreateInstance ([MarshalAs (UnmanagedType.IUnknown)] object pUnkOuter, ref Guid riid, [MarshalAs (UnmanagedType.IUnknown)] out object ppvObj);
41 void GetContainingTypeLib (out UCOMITypeLib ppTLB, out int pIndex);
42 void GetDllEntry (int memid, INVOKEKIND invKind, out string pBstrDllName, out string pBstrName, out short pwOrdinal);
43 void GetDocumentation (int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile);
44 void GetFuncDesc (int index, out IntPtr ppFuncDesc);
45 void GetIDsOfNames ([In, MarshalAs(UnmanagedType.LPArray, ArraySubType = (UnmanagedType.LPWStr), SizeParamIndex=1)] string[] rgszNames, int cNames, [Out, MarshalAs (UnmanagedType.LPArray, ArraySubType = Consts.UnmanagedType_80, SizeParamIndex=1)] int[] pMemId);
46 void GetImplTypeFlags (int index, out int pImplTypeFlags);
47 void GetMops (int memid, out string pBstrMops);
48 void GetNames (int memid, [Out, MarshalAs (UnmanagedType.LPArray, ArraySubType = Consts.UnmanagedType_80, SizeParamIndex=2)] string[] rgBstrNames, int cMaxNames, out int pcNames);
49 void GetRefTypeInfo (int hRef, out UCOMITypeInfo ppTI);
50 void GetRefTypeOfImplType (int index, out int href);
51 void GetTypeAttr (out IntPtr ppTypeAttr);
52 void GetTypeComp (out UCOMITypeComp ppTComp);
53 void GetVarDesc (int index, out IntPtr ppVarDesc);
54 void Invoke ([MarshalAs (UnmanagedType.IUnknown)] object pvInstance, int memid, short wFlags, ref DISPPARAMS pDispParams, out object pVarResult, out EXCEPINFO pExcepInfo, out int puArgErr);
55 void ReleaseFuncDesc (IntPtr pFuncDesc);
56 void ReleaseTypeAttr (IntPtr pTypeAttr);
57 void ReleaseVarDesc (IntPtr pVarDesc);