Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /ComInterop /ComInterop.cs
| // Licensed to the .NET Foundation under one or more agreements. | |
| // The .NET Foundation licenses this file to you under the MIT license. | |
| using System; | |
| using System.Runtime.InteropServices; | |
| using ComTypes = System.Runtime.InteropServices.ComTypes; | |
| namespace System.Management.Automation.ComInterop | |
| { | |
| [] | |
| [] | |
| [] | |
| internal interface IDispatch | |
| { | |
| [] | |
| int TryGetTypeInfoCount(out uint pctinfo); | |
| [] | |
| int TryGetTypeInfo(uint iTInfo, int lcid, out IntPtr info); | |
| [] | |
| int TryGetIDsOfNames( | |
| ref Guid iid, | |
| [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPWStr, SizeParamIndex = 2)] | |
| string[] names, | |
| uint cNames, | |
| int lcid, | |
| [Out] | |
| [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.I4, SizeParamIndex = 2)] | |
| int[] rgDispId); | |
| [] | |
| int TryInvoke( | |
| int dispIdMember, | |
| ref Guid riid, | |
| int lcid, | |
| ComTypes.INVOKEKIND wFlags, | |
| ref ComTypes.DISPPARAMS pDispParams, | |
| IntPtr VarResult, | |
| IntPtr pExcepInfo, | |
| IntPtr puArgErr); | |
| } | |
| [] | |
| [] | |
| [] | |
| internal interface IProvideClassInfo | |
| { | |
| void GetClassInfo(out IntPtr info); | |
| } | |
| internal static class ComDispIds | |
| { | |
| internal const int DISPID_VALUE = 0; | |
| internal const int DISPID_PROPERTYPUT = -3; | |
| internal const int DISPID_NEWENUM = -4; | |
| } | |
| } | |