美文网首页
TInterfacedPersistent::QueryInte

TInterfacedPersistent::QueryInte

作者: 玄坴 | 来源:发表于2020-05-21 20:05 被阅读0次

C++ Builder 参考手册TInterfacedPersistentQueryInterface


头文件:#include <System.Classes.hpp>
命名空间:System::Classes
类:TInterfacedPersistent
访问权限:protected:
函数原型:

virtual HRESULT __stdcall QueryInterface(const GUID &IID, /* out */ void *Obj);

System::Classes::TInterfacedPersistent::QueryInterface 是 System::Classes::TInterfacedPersistent 的成员函数,返回当前组件所支持的 COM 接口的引用。

参数:

IID:接口类型的 GUID;
Obj:返回当前组件所支持的 COM 接口的引用到 Obj;

返回值:

S_OK:成功获取当前组件所支持的 COM 接口的引用到 Obj;
如果不支持,Obj 返回 NULL,函数返回值为 S_FALSE, E_NOINTERFACE, E_UNEXPECTED, 或 E_NOTIMPL 等。


参考:


C++ Builder 参考手册TInterfacedPersistentQueryInterface

相关文章

网友评论

      本文标题:TInterfacedPersistent::QueryInte

      本文链接:https://www.haomeiwen.com/subject/qbiuwhtx.html