mfplat: Implement stubs for MFStartup and MFShutdown.
This commit is contained in:
parent
d64bb04764
commit
46d06eb431
|
@ -22,6 +22,11 @@
|
|||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "mferror.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
||||
{
|
||||
|
@ -36,3 +41,21 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFStartup (mfplat.@)
|
||||
*/
|
||||
HRESULT WINAPI MFStartup(ULONG version, DWORD flags)
|
||||
{
|
||||
FIXME("(%u, %u): stub\n", version, flags);
|
||||
return MF_E_BAD_STARTUP_VERSION;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* MFShutdown (mfplat.@)
|
||||
*/
|
||||
HRESULT WINAPI MFShutdown(void)
|
||||
{
|
||||
FIXME("(): stub\n");
|
||||
return S_OK;
|
||||
}
|
||||
|
|
|
@ -131,8 +131,8 @@
|
|||
@ stub MFSerializeMediaTypeToStream
|
||||
@ stub MFSerializePresentationDescriptor
|
||||
@ stub MFSetSockaddrAny
|
||||
@ stub MFShutdown
|
||||
@ stub MFStartup
|
||||
@ stdcall MFShutdown()
|
||||
@ stdcall MFStartup(long long)
|
||||
@ stub MFStreamDescriptorProtectMediaType
|
||||
@ stub MFTEnum
|
||||
@ stub MFTEnumEx
|
||||
|
|
Loading…
Reference in New Issue