Commit 2e3baaed authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mfplat: Forward MFCreateAsyncResult() to rtworkq.dll.

parent b4392936
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
@ stdcall MFCreate2DMediaBuffer(long long long long ptr) @ stdcall MFCreate2DMediaBuffer(long long long long ptr)
@ stub MFCreateAMMediaTypeFromMFMediaType @ stub MFCreateAMMediaTypeFromMFMediaType
@ stdcall MFCreateAlignedMemoryBuffer(long long ptr) @ stdcall MFCreateAlignedMemoryBuffer(long long ptr)
@ stdcall MFCreateAsyncResult(ptr ptr ptr ptr) @ stdcall MFCreateAsyncResult(ptr ptr ptr ptr) rtworkq.RtwqCreateAsyncResult
@ stdcall MFCreateAttributes(ptr long) @ stdcall MFCreateAttributes(ptr long)
@ stub MFCreateAudioMediaType @ stub MFCreateAudioMediaType
@ stdcall MFCreateCollection(ptr) @ stdcall MFCreateCollection(ptr)
......
...@@ -140,16 +140,6 @@ HRESULT WINAPI MFInvokeCallback(IMFAsyncResult *result) ...@@ -140,16 +140,6 @@ HRESULT WINAPI MFInvokeCallback(IMFAsyncResult *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.@) * MFGetTimerPeriodicity (mfplat.@)
*/ */
HRESULT WINAPI MFGetTimerPeriodicity(DWORD *period) HRESULT WINAPI MFGetTimerPeriodicity(DWORD *period)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment