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:
Nikolay Sivov 2019-03-13 09:29:36 +03:00 committed by Alexandre Julliard
parent 9ef27b8d24
commit e8df24941d
1 changed files with 2 additions and 5 deletions

View File

@ -2930,11 +2930,8 @@ static HRESULT WINAPI mfmediaevent_GetItemByIndex(IMFMediaEvent *iface, UINT32 i
static HRESULT WINAPI mfmediaevent_CopyAllItems(IMFMediaEvent *iface, IMFAttributes *dest) static HRESULT WINAPI mfmediaevent_CopyAllItems(IMFMediaEvent *iface, IMFAttributes *dest)
{ {
mfmediaevent *This = impl_from_IMFMediaEvent(iface); struct media_event *event = impl_from_IMFMediaEvent(iface);
return IMFAttributes_CopyAllItems(&event->attributes.IMFAttributes_iface, dest);
FIXME("%p, %p\n", This, dest);
return E_NOTIMPL;
} }
static HRESULT WINAPI mfmediaevent_GetType(IMFMediaEvent *iface, MediaEventType *type) static HRESULT WINAPI mfmediaevent_GetType(IMFMediaEvent *iface, MediaEventType *type)