FUNCKIND 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
Use System.Runtime.InteropServices.ComTypes.FUNCKIND instead. http://go.microsoft.com/fwlink/?linkid=14202
改用 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
- 继承
- 属性
字段
| 名称 | 值 | 说明 |
|---|---|---|
| FUNC_VIRTUAL | 0 | 该函数的访问方式与访问相同 FUNC_PUREVIRTUAL,但该函数具有实现。 |
| FUNC_PUREVIRTUAL | 1 | 该函数通过虚拟函数表(VTBL)进行访问,并采用隐式 |
| FUNC_NONVIRTUAL | 2 | 该函数由 |
| FUNC_STATIC | 3 | 该函数由 |
| FUNC_DISPATCH | 4 | 只能通过 |
注解
有关其他 FUNCKIND信息,请参阅 MSDN 库。