25 Apr
2016
25 Apr
'16
11:18 p.m.
On 26.04.2016 6:09, Alex Henrie wrote:
static HRESULT WINAPI TimelineObj_GetTimelineType(IAMTimelineObj *iface, TIMELINE_MAJOR_TYPE *type) { TimelineObjImpl *This = impl_from_IAMTimelineObj(iface); - FIXME("(%p)->(%p): not implemented!\n", This, type); - return E_NOTIMPL; + TRACE("(%p)->(%p)\n", This, type); + *type = This->timeline_type; + return S_OK; }
Is it supposed to handle NULL input?