Merged into single file, added assertions
[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         [Obsolete]
34         [ComImport]
35         [Guid("00020401-0000-0000-c000-000000000046")]
36         [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
37         public interface UCOMITypeInfo {
38                 void GetTypeAttr (out IntPtr ppTypeAttr);
39                 void GetTypeComp (out UCOMITypeComp ppTComp);
40                 void GetFuncDesc (int index, out IntPtr ppFuncDesc);
41                 void GetVarDesc (int index, out IntPtr ppVarDesc);
42                 void GetNames (int memid, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex=2)] string[] rgBstrNames, int cMaxNames, out int pcNames);
43                 void GetRefTypeOfImplType (int index, out int href);
44                 void GetImplTypeFlags (int index, out int pImplTypeFlags);
45                 void GetIDsOfNames ([In, MarshalAs(UnmanagedType.LPArray, ArraySubType = (UnmanagedType.LPWStr), SizeParamIndex=1)] string[] rgszNames, int cNames, [Out, MarshalAs (UnmanagedType.LPArray, SizeParamIndex=1)] int[] pMemId);
46                 void Invoke ([MarshalAs (UnmanagedType.IUnknown)] object pvInstance, int memid, short wFlags, ref DISPPARAMS pDispParams, out object pVarResult, out EXCEPINFO pExcepInfo, out int puArgErr);
47                 void GetDocumentation (int index, out string strName, out string strDocString, out int dwHelpContext, out string strHelpFile);
48                 void GetDllEntry (int memid, INVOKEKIND invKind, out string pBstrDllName, out string pBstrName, out short pwOrdinal);
49                 void GetRefTypeInfo (int hRef, out UCOMITypeInfo ppTI);         
50                 void AddressOfMember (int memid, INVOKEKIND invKind, out IntPtr ppv); 
51                 void CreateInstance ([MarshalAs (UnmanagedType.IUnknown)] object pUnkOuter, ref Guid riid, [MarshalAs (UnmanagedType.IUnknown)] out object ppvObj);
52                 void GetMops (int memid, out string pBstrMops);
53                 void GetContainingTypeLib (out UCOMITypeLib ppTLB, out int pIndex);
54                 void ReleaseTypeAttr (IntPtr pTypeAttr);
55                 void ReleaseFuncDesc (IntPtr pFuncDesc);
56                 void ReleaseVarDesc (IntPtr pVarDesc);
57         }
58 }
59