2006-08-31 Robert Jordan <robertj@gmx.net>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / UCOMITypeInfo.cs
1
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.
23 //
24
25 // System.Runtime.InteropServices.UCOMITypeInfo.cs
26 //
27 // Paolo Molaro (lupus@ximian.com)
28 //
29 // (C) 2002 Ximian, Inc.
30
31 namespace System.Runtime.InteropServices
32 {
33 #if NET_2_0
34         [Obsolete]
35 #endif
36         [ComImport]
37         [Guid("00020401-0000-0000-c000-000000000046")]
38         [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
39         public interface UCOMITypeInfo {
40                 void GetTypeAttr (out IntPtr ppTypeAttr);
41                 void GetTypeComp (out UCOMITypeComp ppTComp);
42                 void GetFuncDesc (int index, out IntPtr ppFuncDesc);
43                 void GetVarDesc (int index, out IntPtr ppVarDesc);
44                 void GetNames (int memid, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex=2)] string[] rgBstrNames, int cMaxNames, out int pcNames);
45                 void GetRefTypeOfImplType (int index, out int href);
46                 void GetImplTypeFlags (int index, out int pImplTypeFlags);
47                 void GetIDsOfNames ([In, MarshalAs(UnmanagedType.LPArray, ArraySubType = (UnmanagedType.LPWStr), SizeParamIndex=1)] string[] rgszNames, int cNames, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex=1)] int[] pMemId);
48                 void Invoke ([MarshalAs (UnmanagedType.IUnknown)] object pvInstance, int memid, short wFlags, ref DISPPARAMS pDispParams, out object pVarResult, out EXCEPINFO pExcepInfo, out int puArgErr);
49                 void GetDocumentation (int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile);
50                 void GetDllEntry (int memid, INVOKEKIND invKind, out string pBstrDllName, out string pBstrName, out short pwOrdinal);
51                 void GetRefTypeInfo (int hRef, out UCOMITypeInfo ppTI);         
52                 void AddressOfMember (int memid, INVOKEKIND invKind, out IntPtr ppv); 
53                 void CreateInstance ([MarshalAs (UnmanagedType.IUnknown)] object pUnkOuter, ref Guid riid, [MarshalAs (UnmanagedType.IUnknown)] out object ppvObj);
54                 void GetMops (int memid, out string pBstrMops);
55                 void GetContainingTypeLib (out UCOMITypeLib ppTLB, out int pIndex);
56                 void ReleaseTypeAttr (IntPtr pTypeAttr);
57                 void ReleaseFuncDesc (IntPtr pFuncDesc);
58                 void ReleaseVarDesc (IntPtr pVarDesc);
59         }
60 }
61