ITypeInfo2.GetDllEntry(Int32, INVOKEKIND, IntPtr, IntPtr, IntPtr) Method

Definition

Retrieves a description or specification of an entry point for a function in a DLL.

public:
 void GetDllEntry(int memid, System::Runtime::InteropServices::ComTypes::INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal);
public void GetDllEntry (int memid, System.Runtime.InteropServices.ComTypes.INVOKEKIND invKind, IntPtr pBstrDllName, IntPtr pBstrName, IntPtr pwOrdinal);
abstract member GetDllEntry : int * System.Runtime.InteropServices.ComTypes.INVOKEKIND * nativeint * nativeint * nativeint -> unit
Public Sub GetDllEntry (memid As Integer, invKind As INVOKEKIND, pBstrDllName As IntPtr, pBstrName As IntPtr, pwOrdinal As IntPtr)

Parameters

memid
Int32

The ID of the member function whose DLL entry description is to be returned.

invKind
INVOKEKIND

One of the INVOKEKIND values that specifies the kind of member identified by memid.

pBstrDllName
IntPtr

nativeint

If not null, the function sets pBstrDllName to a BSTR that contains the name of the DLL.

pBstrName
IntPtr

nativeint

If not null, the function sets lpbstrName to a BSTR that contains the name of the entry point.

pwOrdinal
IntPtr

nativeint

If not null, and the function is defined by an ordinal, then lpwOrdinal is set to point to the ordinal.

Implements

Remarks

For more information, see ITypeInfo::GetDllEntry method.

Applies to