24 references to INVOKEKIND
System.Private.Windows.Core (19)
Windows.Win32.FUNCDESC.g.cs (1)
45 internal winmdroot.System.Com.INVOKEKIND invkind;
Windows.Win32.ITypeInfo.g.cs (14)
521 /// <inheritdoc cref="GetDllEntry(int, winmdroot.System.Com.INVOKEKIND, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, ushort*)"/> 522 internal unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, winmdroot.Foundation.BSTR* pBstrDllName, winmdroot.Foundation.BSTR* pBstrName, out ushort pwOrdinal) 534 private static winmdroot.Foundation.HRESULT GetDllEntry(ITypeInfo* pThis, int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal) 567 public unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal) 569 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, pBstrDllName, pBstrName, pwOrdinal); 605 /// <inheritdoc cref="AddressOfMember(int, winmdroot.System.Com.INVOKEKIND, void**)"/> 606 internal unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv) 618 private static winmdroot.Foundation.HRESULT AddressOfMember(ITypeInfo* pThis, int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv) 647 public unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv) 649 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, ppv); 939 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.HRESULT> GetDllEntry_14; 943 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.HRESULT> AddressOfMember_16; 1029 unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal); 1035 unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv);
Windows.Win32.System_Com_ITypeInfo_Extensions.g.cs (4)
126 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.GetDllEntry(int, winmdroot.System.Com.INVOKEKIND, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, ushort*)"/> 127 internal static unsafe winmdroot.Foundation.HRESULT GetDllEntry(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, winmdroot.Foundation.BSTR* pBstrDllName, winmdroot.Foundation.BSTR* pBstrName, out ushort pwOrdinal) 136 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.AddressOfMember(int, winmdroot.System.Com.INVOKEKIND, void**)"/> 137 internal static unsafe winmdroot.Foundation.HRESULT AddressOfMember(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv)
System.Windows.Forms (2)
System\Windows\Forms\ComponentModel\COM2Interop\COM2TypeInfoProcessor.cs (2)
621if (functionDescription->invkind == INVOKEKIND.INVOKE_FUNC 635isPropertyGetter = functionDescription->invkind == INVOKEKIND.INVOKE_PROPERTYGET;
System.Windows.Forms.Primitives.Tests (3)
Interop\Oleaut32\ITypeInfoTests.cs (3)
25HRESULT hr = typeInfo.Value->AddressOfMember(6, INVOKEKIND.INVOKE_FUNC, &pvObj); 72HRESULT hr = typeInfo.Value->GetDllEntry(6, INVOKEKIND.INVOKE_FUNC, &dllName, &name, &wOrdinal); 116Assert.Equal(INVOKEKIND.INVOKE_FUNC, pFuncDesc->invkind);