Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 207 of file container.c.
{ IDxDiagContainerImpl *This = (IDxDiagContainerImpl *)iface; IDxDiagContainerImpl_Property* p = NULL; FIXME("(%p, %s, %p)\n", iface, debugstr_w(pwszPropName), pvarProp); if (NULL == pvarProp || NULL == pwszPropName) { return E_INVALIDARG; } p = This->properties; while (NULL != p) { if (0 == lstrcmpW(p->vName, pwszPropName)) { VariantCopy(pvarProp, &p->v); return S_OK; } p = p->next; } return S_OK; }