mfplat: Added MFCreateEventQueue stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a098906019
commit
d003ed3b17
|
@ -1513,3 +1513,16 @@ HRESULT WINAPI MFCreateMediaType(IMFMediaType **type)
|
|||
*type = &object->IMFMediaType_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFCreateEventQueue (mfplat.@)
|
||||
*/
|
||||
HRESULT WINAPI MFCreateEventQueue(IMFMediaEventQueue **queue)
|
||||
{
|
||||
FIXME("%p\n", queue);
|
||||
|
||||
if(queue)
|
||||
*queue = NULL;
|
||||
|
||||
return E_FAIL;
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
@ stdcall MFCreateAttributes(ptr long)
|
||||
@ stub MFCreateAudioMediaType
|
||||
@ stub MFCreateCollection
|
||||
@ stub MFCreateEventQueue
|
||||
@ stdcall MFCreateEventQueue(ptr)
|
||||
@ stub MFCreateFile
|
||||
@ stub MFCreateLegacyMediaBufferOnMFMediaBuffer
|
||||
@ stub MFCreateMFByteStreamOnStream
|
||||
|
|
|
@ -65,6 +65,7 @@ typedef unsigned __int64 MFWORKITEM_KEY;
|
|||
|
||||
HRESULT WINAPI MFCancelWorkItem(MFWORKITEM_KEY key);
|
||||
HRESULT WINAPI MFCreateAttributes(IMFAttributes **attributes, UINT32 size);
|
||||
HRESULT WINAPI MFCreateEventQueue(IMFMediaEventQueue **queue);
|
||||
HRESULT WINAPI MFCreateMediaType(IMFMediaType **type);
|
||||
HRESULT WINAPI MFGetTimerPeriodicity(DWORD *periodicity);
|
||||
HRESULT WINAPI MFTEnum(GUID category, UINT32 flags, MFT_REGISTER_TYPE_INFO *input_type,
|
||||
|
|
Loading…
Reference in New Issue