本文整理汇总了C++中IDispatch::GetTypeInfoCount方法的典型用法代码示例。如果您正苦于以下问题:C++ IDispatch::GetTypeInfoCount方法的具体用法?C++ IDispatch::GetTypeInfoCount怎么用?C++ IDispatch::GetTypeInfoCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDispatch
的用法示例。
在下文中一共展示了IDispatch::GetTypeInfoCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: hasIntrospection
/*!
Returns true if the script engine supports introspection;
otherwise returns false.
*/
bool QAxScriptEngine::hasIntrospection() const
{
if (!isValid())
return false;
IDispatch *scriptDispatch = 0;
QAxBase::queryInterface(IID_IDispatch, (void**)&scriptDispatch);
if (!scriptDispatch)
return false;
UINT tic = 0;
HRESULT hres = scriptDispatch->GetTypeInfoCount(&tic);
scriptDispatch->Release();
return hres == S_OK && tic > 0;
}
示例2: PyCom_BuildPyException
// @pymethod int|PyIDispatch|GetTypeInfoCount|Retrieves the number of <o PyITypeInfo>s the object provides.
PyObject *PyIDispatch::GetTypeInfoCount(PyObject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args,":GetTypeInfoCount"))
return NULL;
unsigned int ret;
IDispatch *pMyDispatch = GetI(self);
if (pMyDispatch==NULL) return NULL;
PY_INTERFACE_PRECALL;
HRESULT hr = pMyDispatch->GetTypeInfoCount(&ret);
PY_INTERFACE_POSTCALL;
if ( FAILED(hr) )
return PyCom_BuildPyException(hr, pMyDispatch, IID_IDispatch);
return Py_BuildValue("i", ret);
}