mfplat: Forward MFCreateAsyncResult() to rtworkq.dll.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b43929367c
commit
2e3baaed2c
|
@ -40,7 +40,7 @@
|
|||
@ stdcall MFCreate2DMediaBuffer(long long long long ptr)
|
||||
@ stub MFCreateAMMediaTypeFromMFMediaType
|
||||
@ stdcall MFCreateAlignedMemoryBuffer(long long ptr)
|
||||
@ stdcall MFCreateAsyncResult(ptr ptr ptr ptr)
|
||||
@ stdcall MFCreateAsyncResult(ptr ptr ptr ptr) rtworkq.RtwqCreateAsyncResult
|
||||
@ stdcall MFCreateAttributes(ptr long)
|
||||
@ stub MFCreateAudioMediaType
|
||||
@ stdcall MFCreateCollection(ptr)
|
||||
|
|
|
@ -139,16 +139,6 @@ HRESULT WINAPI MFInvokeCallback(IMFAsyncResult *result)
|
|||
return RtwqInvokeCallback((IRtwqAsyncResult *)result);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFCreateAsyncResult (mfplat.@)
|
||||
*/
|
||||
HRESULT WINAPI MFCreateAsyncResult(IUnknown *object, IMFAsyncCallback *callback, IUnknown *state, IMFAsyncResult **out)
|
||||
{
|
||||
TRACE("%p, %p, %p, %p.\n", object, callback, state, out);
|
||||
|
||||
return RtwqCreateAsyncResult(object, (IRtwqAsyncCallback *)callback, state, (IRtwqAsyncResult **)out);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFGetTimerPeriodicity (mfplat.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue