FUNCKIND Enumeração

Definição

Cuidado

Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202

Cuidado

Essa API foi preterida.

Use FUNCKIND em seu lugar.

public enum class FUNCKIND
[System.Runtime.InteropServices.ComVisible(false)]
[System.Serializable]
public enum FUNCKIND
[System.Serializable]
[System.Obsolete("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)]
public enum FUNCKIND
[System.Serializable]
[System.Obsolete]
public enum FUNCKIND
[<System.Runtime.InteropServices.ComVisible(false)>]
[<System.Serializable>]
type FUNCKIND = 
[<System.Serializable>]
[<System.Obsolete("Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202", false)>]
type FUNCKIND = 
[<System.Serializable>]
[<System.Obsolete>]
type FUNCKIND = 
Public Enum FUNCKIND
Herança
FUNCKIND
Atributos

Campos

FUNC_DISPATCH 4

A função pode ser acessada somente por meio de IDispatch.

FUNC_NONVIRTUAL 2

A função é acessada pelo endereço static e aceita um ponteiro this implícito.

FUNC_PUREVIRTUAL 1

A função é acessada pela VTBL (tabela de função virtual) e usa um ponteiro this implícito.

FUNC_STATIC 3

A função é acessada pelo endereço static e não aceita um ponteiro this implícito.

FUNC_VIRTUAL 0

A função é acessada assim como FUNC_PUREVIRTUAL, exceto pelo fato de que a função tem uma implementação.

Comentários

Para obter informações adicionais sobre FUNCKIND o, consulte a biblioteca MSDN.

Aplica-se a