Compartilhar via


Método UCOMITypeInfo.GetDllEntry (Int32, INVOKEKIND, String, String, Int16)

 

Dica

The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.

Recupera uma descrição ou especificação de um ponto de entrada de uma função em uma DLL.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (em mscorlib.dll)

Sintaxe

void GetDllEntry(
    int memid,
    INVOKEKIND invKind,
    out string pBstrDllName,
    out string pBstrName,
    out short pwOrdinal
)
void GetDllEntry(
    int memid,
    INVOKEKIND invKind,
    [OutAttribute] String^% pBstrDllName,
    [OutAttribute] String^% pBstrName,
    [OutAttribute] short% pwOrdinal
)
abstract GetDllEntry : 
        memid:int *
        invKind:INVOKEKIND *
        pBstrDllName:string byref *
        pBstrName:string byref *
        pwOrdinal:int16 byref -> unit
Sub GetDllEntry (
    memid As Integer,
    invKind As INVOKEKIND,
    <OutAttribute> ByRef pBstrDllName As String,
    <OutAttribute> ByRef pBstrName As String,
    <OutAttribute> ByRef pwOrdinal As Short
)

Parâmetros

  • memid
    Type: System.Int32

    ID da função de membro cuja descrição de entrada da DLL será retornada.

  • pBstrDllName
    Type: System.String

    Se não null, os conjuntos de função pBstrDllName para um BSTR que contém o nome da DLL.

  • pBstrName
    Type: System.String

    Se não null, os conjuntos de função lpbstrName para um BSTR que contém o nome do ponto de entrada.

  • pwOrdinal
    Type: System.Int16

    Se não null, e a função é definida por um número ordinal, em seguida, lpwOrdinal está definido para apontar para o ordinal.

Comentários

Para obter informações adicionais sobre ITypeInfo::GetDllEntry, consulte a biblioteca MSDN.

Informações de Versão

.NET Framework
Disponível desde 1.1

Confira Também

Interface UCOMITypeInfo
Namespace System.Runtime.InteropServices

Retornar ao início