Commit 493c2c32 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mfplat: Add MFAllocateWorkQueueEx().

parent 7a120b0b
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
@ stub LFGetGlobalPool @ stub LFGetGlobalPool
@ stub MFAddPeriodicCallback @ stub MFAddPeriodicCallback
@ stdcall MFAllocateWorkQueue(ptr) @ stdcall MFAllocateWorkQueue(ptr)
@ stub MFAllocateWorkQueueEx @ stdcall MFAllocateWorkQueueEx(long ptr)
@ stub MFAppendCollection @ stub MFAppendCollection
@ stub MFAverageTimePerFrameToFrameRate @ stub MFAverageTimePerFrameToFrameRate
@ stub MFBeginCreateFile @ stub MFBeginCreateFile
......
...@@ -388,6 +388,16 @@ HRESULT WINAPI MFAllocateWorkQueue(DWORD *queue) ...@@ -388,6 +388,16 @@ HRESULT WINAPI MFAllocateWorkQueue(DWORD *queue)
} }
/*********************************************************************** /***********************************************************************
* MFAllocateWorkQueueEx (mfplat.@)
*/
HRESULT WINAPI MFAllocateWorkQueueEx(MFASYNC_WORKQUEUE_TYPE queue_type, DWORD *queue)
{
TRACE("%d, %p.\n", queue_type, queue);
return alloc_user_queue(queue_type, queue);
}
/***********************************************************************
* MFLockWorkQueue (mfplat.@) * MFLockWorkQueue (mfplat.@)
*/ */
HRESULT WINAPI MFLockWorkQueue(DWORD queue) HRESULT WINAPI MFLockWorkQueue(DWORD queue)
......
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