mfplat: Forward CopyAllItems() for events.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9ef27b8d24
commit
e8df24941d
|
@ -2930,11 +2930,8 @@ static HRESULT WINAPI mfmediaevent_GetItemByIndex(IMFMediaEvent *iface, UINT32 i
|
|||
|
||||
static HRESULT WINAPI mfmediaevent_CopyAllItems(IMFMediaEvent *iface, IMFAttributes *dest)
|
||||
{
|
||||
mfmediaevent *This = impl_from_IMFMediaEvent(iface);
|
||||
|
||||
FIXME("%p, %p\n", This, dest);
|
||||
|
||||
return E_NOTIMPL;
|
||||
struct media_event *event = impl_from_IMFMediaEvent(iface);
|
||||
return IMFAttributes_CopyAllItems(&event->attributes.IMFAttributes_iface, dest);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI mfmediaevent_GetType(IMFMediaEvent *iface, MediaEventType *type)
|
||||
|
|
Loading…
Reference in New Issue