TObject::GetInterfaceEntry:获取接口项目
函数原型:
__classmethod PInterfaceEntry __fastcall GetInterfaceEntry(const GUID &IID); |
头文件:
#include <System.hpp>
命名空间:
System
参数:
IID:接口的 IID,C++ 需要用 __uuidof 获取 IID,Delphi 的 IID 允许用接口名称,编译器会自动采用类型的 GUID。
返回值:
接口项目,COM 对象可以用 GetInterfaceEntry 调用双接口方法 (dual-IDispatch interface)
兼容性:
函数 \ C++ Builder 编译器 |
bcc32 |
clang32 |
clang64 |
TObject::GetInterfaceEntry |
√ |
√ |
√ |
相关链接:
• GetInterface • GetInterfaceTable • TObject • VCL基础类
|