FUNCKIND Enumeración
Definición
Precaución
Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202
Precaución
Esta API está ya obsoleta.
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
- Herencia
- Atributos
Campos
FUNC_DISPATCH | 4 | Sólo se puede tener acceso a la función a través de |
FUNC_NONVIRTUAL | 2 | La dirección |
FUNC_PUREVIRTUAL | 1 | Se obtiene acceso a la función mediante la tabla de función virtual (VTBL) y utilizando un puntero implícito |
FUNC_STATIC | 3 | La dirección |
FUNC_VIRTUAL | 0 | Se obtiene acceso a la función de la misma forma que FUNC_PUREVIRTUAL, excepto que la función tiene una implementación.The function is accessed the same as FUNC_PUREVIRTUAL, except the function has an implementation. |
Comentarios
Para obtener información adicional acerca de FUNCKIND
, vea MSDN Library.For additional information about FUNCKIND
, see the MSDN Library.