FUNCKIND Enumeração
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Atenção
Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202
Utilize FUNCKIND em substituição.
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.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 =
Public Enum FUNCKIND
- Herança
- Atributos
Campos
| Name | Valor | Description |
|---|---|---|
| FUNC_VIRTUAL | 0 | A função é acedida da mesma forma que FUNC_PUREVIRTUAL, exceto que a função tem uma implementação. |
| FUNC_PUREVIRTUAL | 1 | A função é acedida através da tabela virtual de funções (VTBL) e utiliza um ponteiro implícito |
| FUNC_NONVIRTUAL | 2 | A função é acedida por |
| FUNC_STATIC | 3 | A função é acedida por |
| FUNC_DISPATCH | 4 | A função só pode ser acedida através de |
Observações
Para informações adicionais sobre FUNCKIND, consulte a Biblioteca MSDN.