mfreadwrite: Add MFCreateSourceReaderFromMediaSource stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f45f088d86
commit
0dc677c05f
|
@ -22,6 +22,11 @@
|
|||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "mfreadwrite.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
||||
{
|
||||
|
@ -36,3 +41,12 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
HRESULT WINAPI MFCreateSourceReaderFromMediaSource(IMFMediaSource *source, IMFAttributes *attributes,
|
||||
IMFSourceReader **reader)
|
||||
{
|
||||
FIXME("%p %p %p stub.\n", source, attributes, reader);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
|
@ -3,5 +3,5 @@
|
|||
@ stub MFCreateSinkWriterFromMediaSink
|
||||
@ stub MFCreateSinkWriterFromURL
|
||||
@ stub MFCreateSourceReaderFromByteStream
|
||||
@ stub MFCreateSourceReaderFromMediaSource
|
||||
@ stdcall MFCreateSourceReaderFromMediaSource(ptr ptr ptr)
|
||||
@ stub MFCreateSourceReaderFromURL
|
||||
|
|
Loading…
Reference in New Issue