FUNCKIND Enumerazione
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Attenzione
Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202
In alternativa, utilizzare FUNCKIND.
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
- Ereditarietà
- Attributi
Campi
FUNC_DISPATCH | 4 | Alla funzione è possibile accedere solo mediante |
FUNC_NONVIRTUAL | 2 | La funzione è accessibile tramite un indirizzo |
FUNC_PUREVIRTUAL | 1 | La funzione è accessibile tramite la tabella di funzioni virtual (VTBL) e assume un puntatore |
FUNC_STATIC | 3 | La funzione è accessibile tramite un indirizzo |
FUNC_VIRTUAL | 0 | L'accesso alla funzione avviene in modo identico a FUNC_PUREVIRTUAL, ad eccezione del fatto che essa dispone di un'implementazione. |
Commenti
Per altre informazioni su FUNCKIND
, vedere MSDN Library.