mfplat: Forward MFScheduleWorkItemEx() 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
eb1b2e5486
commit
22d76e0db0
|
@ -136,7 +136,7 @@
|
|||
@ stdcall MFRegisterLocalSchemeHandler(wstr ptr)
|
||||
@ stdcall MFRemovePeriodicCallback(long) rtworkq.RtwqRemovePeriodicCallback
|
||||
@ stdcall MFScheduleWorkItem(ptr ptr int64 ptr)
|
||||
@ stdcall MFScheduleWorkItemEx(ptr int64 ptr)
|
||||
@ stdcall MFScheduleWorkItemEx(ptr int64 ptr) rtworkq.RtwqScheduleWorkItem
|
||||
@ stub MFSerializeAttributesToStream
|
||||
@ stub MFSerializeEvent
|
||||
@ stub MFSerializeMediaTypeToStream
|
||||
|
|
|
@ -119,16 +119,6 @@ HRESULT WINAPI MFScheduleWorkItem(IMFAsyncCallback *callback, IUnknown *state, I
|
|||
return hr;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFScheduleWorkItemEx (mfplat.@)
|
||||
*/
|
||||
HRESULT WINAPI MFScheduleWorkItemEx(IMFAsyncResult *result, INT64 timeout, MFWORKITEM_KEY *key)
|
||||
{
|
||||
TRACE("%p, %s, %p.\n", result, wine_dbgstr_longlong(timeout), key);
|
||||
|
||||
return RtwqScheduleWorkItem((IRtwqAsyncResult *)result, timeout, key);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFInvokeCallback (mfplat.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue