mf: Add MFGetSupportedMimeTypes stub.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
3186df2b02
commit
1d7e48a522
|
@ -15,12 +15,18 @@
|
|||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "mfidl.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
||||
{
|
||||
|
@ -35,3 +41,13 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFGetSupportedMimeTypes (mf.@)
|
||||
*/
|
||||
HRESULT WINAPI MFGetSupportedMimeTypes(PROPVARIANT *array)
|
||||
{
|
||||
FIXME("(%p) stub\n", array);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@
|
|||
@ stub MFEnumDeviceSources
|
||||
@ stub MFGetMultipleServiceProviders
|
||||
@ stub MFGetService
|
||||
@ stub MFGetSupportedMimeTypes
|
||||
@ stdcall MFGetSupportedMimeTypes(ptr)
|
||||
@ stub MFGetSupportedSchemes
|
||||
@ stub MFGetTopoNodeCurrentType
|
||||
@ stub MFReadSequencerSegmentOffset
|
||||
|
|
|
@ -255,3 +255,4 @@ cpp_quote("HRESULT WINAPI MFCreateSourceResolver(IMFSourceResolver **resolver);"
|
|||
cpp_quote("HRESULT WINAPI MFCreateStreamDescriptor(DWORD identifier, DWORD cMediaTypes,")
|
||||
cpp_quote(" IMFMediaType **types, IMFStreamDescriptor **descriptor);")
|
||||
cpp_quote("HRESULT WINAPI MFCreateTopology(IMFTopology **topology);")
|
||||
cpp_quote("HRESULT WINAPI MFGetSupportedMimeTypes(PROPVARIANT *array);")
|
||||
|
|
Loading…
Reference in New Issue