mfplat: Add MFAllocateSerialWorkQueue() export.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
5737cdc97d
commit
19519f025e
|
@ -16,6 +16,7 @@
|
||||||
@ stub GetD3DFormatFromMFSubtype
|
@ stub GetD3DFormatFromMFSubtype
|
||||||
@ stub LFGetGlobalPool
|
@ stub LFGetGlobalPool
|
||||||
@ stdcall MFAddPeriodicCallback(ptr ptr ptr) rtworkq.RtwqAddPeriodicCallback
|
@ stdcall MFAddPeriodicCallback(ptr ptr ptr) rtworkq.RtwqAddPeriodicCallback
|
||||||
|
@ stdcall MFAllocateSerialWorkQueue(long ptr) rtworkq.RtwqAllocateSerialWorkQueue
|
||||||
@ stdcall MFAllocateWorkQueue(ptr)
|
@ stdcall MFAllocateWorkQueue(ptr)
|
||||||
@ stdcall MFAllocateWorkQueueEx(long ptr) rtworkq.RtwqAllocateWorkQueue
|
@ stdcall MFAllocateWorkQueueEx(long ptr) rtworkq.RtwqAllocateWorkQueue
|
||||||
@ stub MFAppendCollection
|
@ stub MFAppendCollection
|
||||||
|
|
|
@ -2251,7 +2251,7 @@ static void test_serial_queue(void)
|
||||||
|
|
||||||
if (!pMFAllocateSerialWorkQueue)
|
if (!pMFAllocateSerialWorkQueue)
|
||||||
{
|
{
|
||||||
skip("Serial queues are not supported.\n");
|
win_skip("Serial queues are not supported.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -389,6 +389,7 @@ typedef enum
|
||||||
#define MFSESSIONCAP_DOES_NOT_USE_NETWORK 0x00000040
|
#define MFSESSIONCAP_DOES_NOT_USE_NETWORK 0x00000040
|
||||||
|
|
||||||
HRESULT WINAPI MFAddPeriodicCallback(MFPERIODICCALLBACK callback, IUnknown *context, DWORD *key);
|
HRESULT WINAPI MFAddPeriodicCallback(MFPERIODICCALLBACK callback, IUnknown *context, DWORD *key);
|
||||||
|
HRESULT WINAPI MFAllocateSerialWorkQueue(DWORD target_queue, DWORD *queue);
|
||||||
HRESULT WINAPI MFAllocateWorkQueue(DWORD *queue);
|
HRESULT WINAPI MFAllocateWorkQueue(DWORD *queue);
|
||||||
HRESULT WINAPI MFAllocateWorkQueueEx(MFASYNC_WORKQUEUE_TYPE queue_type, DWORD *queue);
|
HRESULT WINAPI MFAllocateWorkQueueEx(MFASYNC_WORKQUEUE_TYPE queue_type, DWORD *queue);
|
||||||
HRESULT WINAPI MFBeginCreateFile(MF_FILE_ACCESSMODE access_mode, MF_FILE_OPENMODE open_mode, MF_FILE_FLAGS flags,
|
HRESULT WINAPI MFBeginCreateFile(MF_FILE_ACCESSMODE access_mode, MF_FILE_OPENMODE open_mode, MF_FILE_FLAGS flags,
|
||||||
|
|
Loading…
Reference in New Issue