[PATCH 5/5] qedit: Implement IAMTimelineObj_GetTimelineNoRef and add tests.

Nikolay Sivov bunglehead at gmail.com
Mon Apr 25 23:21:37 CDT 2016


On 26.04.2016 6:10, Alex Henrie wrote:
>  static HRESULT WINAPI TimelineObj_GetTimelineNoRef(IAMTimelineObj *iface, IAMTimeline **timeline)
>  {
> +    /* MSDN says that this function is "not supported" */
>      TimelineObjImpl *This = impl_from_IAMTimelineObj(iface);
> -    FIXME("(%p)->(%p): not implemented!\n", This, timeline);
> -    return E_NOTIMPL;
> +    TRACE("(%p)->(%p)\n", This, timeline);
> +    if (!timeline) return E_POINTER;
> +    return E_NOINTERFACE;
>  }

This looks like a call to QI, according to your tests.



More information about the wine-devel mailing list