// 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 { [ComImport] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [Guid("00020400-0000-0000-C000-000000000046")] internal interface IDispatch { [PreserveSig] int TryGetTypeInfoCount(out uint pctinfo); [PreserveSig] int TryGetTypeInfo(uint iTInfo, int lcid, out IntPtr info); [PreserveSig] 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); [PreserveSig] int TryInvoke( int dispIdMember, ref Guid riid, int lcid, ComTypes.INVOKEKIND wFlags, ref ComTypes.DISPPARAMS pDispParams, IntPtr VarResult, IntPtr pExcepInfo, IntPtr puArgErr); } [ComImport] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [Guid("B196B283-BAB4-101A-B69C-00AA00341D07")] 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; } }