mfplat: Add MFTRegisterLocal stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45622 Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
42c20ac0b8
commit
5b8565d607
|
@ -230,6 +230,16 @@ HRESULT WINAPI MFTRegister(CLSID clsid, GUID category, LPWSTR name, UINT32 flags
|
|||
return hr;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MFTRegisterLocal(IClassFactory *factory, REFGUID category, LPCWSTR name,
|
||||
UINT32 flags, UINT32 cinput, const MFT_REGISTER_TYPE_INFO *input_types,
|
||||
UINT32 coutput, const MFT_REGISTER_TYPE_INFO* output_types)
|
||||
{
|
||||
FIXME("(%p, %s, %s, %x, %u, %p, %u, %p)\n", factory, debugstr_guid(category), debugstr_w(name),
|
||||
flags, cinput, input_types, coutput, output_types);
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static BOOL match_type(const WCHAR *clsid_str, const WCHAR *type_str, MFT_REGISTER_TYPE_INFO *type)
|
||||
{
|
||||
HKEY htransform, hfilter;
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
@ stdcall MFTEnumEx(int128 long ptr ptr ptr ptr)
|
||||
@ stub MFTGetInfo
|
||||
@ stdcall MFTRegister(int128 int128 wstr long long ptr long ptr ptr)
|
||||
@ stub MFTRegisterLocal
|
||||
@ stub MFTRegisterLocal(ptr ptr wstr long long ptr long ptr)
|
||||
@ stub MFTRegisterLocalByCLSID
|
||||
@ stdcall MFTUnregister(int128)
|
||||
@ stub MFTUnregisterLocal
|
||||
|
|
|
@ -78,6 +78,9 @@ HRESULT WINAPI MFLockPlatform(void);
|
|||
HRESULT WINAPI MFTRegister(CLSID clsid, GUID category, LPWSTR name, UINT32 flags, UINT32 cinput,
|
||||
MFT_REGISTER_TYPE_INFO *input_types, UINT32 coutput,
|
||||
MFT_REGISTER_TYPE_INFO *output_types, IMFAttributes *attributes);
|
||||
HRESULT WINAPI MFTRegisterLocal(IClassFactory *factory, REFGUID category, LPCWSTR name,
|
||||
UINT32 flags, UINT32 cinput, const MFT_REGISTER_TYPE_INFO *input_types,
|
||||
UINT32 coutput, const MFT_REGISTER_TYPE_INFO* output_types);
|
||||
HRESULT WINAPI MFShutdown(void);
|
||||
HRESULT WINAPI MFStartup(ULONG version, DWORD flags);
|
||||
HRESULT WINAPI MFUnlockPlatform(void);
|
||||
|
|
Loading…
Reference in New Issue