mfplat: Add MFTRegisterLocalByCLSID() stub.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7692394231
commit
7dcc9ff458
|
@ -330,6 +330,17 @@ HRESULT WINAPI MFTRegisterLocal(IClassFactory *factory, REFGUID category, LPCWST
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MFTRegisterLocalByCLSID(REFCLSID clsid, REFGUID category, LPCWSTR name, UINT32 flags,
|
||||
UINT32 input_count, const MFT_REGISTER_TYPE_INFO *input_types, UINT32 output_count,
|
||||
const MFT_REGISTER_TYPE_INFO *output_types)
|
||||
{
|
||||
|
||||
FIXME("%s, %s, %s, %#x, %u, %p, %u, %p.\n", debugstr_guid(clsid), debugstr_guid(category), debugstr_w(name), flags,
|
||||
input_count, input_types, output_count, output_types);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MFTUnregisterLocal(IClassFactory *factory)
|
||||
{
|
||||
FIXME("(%p)\n", factory);
|
||||
|
|
|
@ -147,7 +147,7 @@
|
|||
@ stub MFTGetInfo
|
||||
@ stdcall MFTRegister(int128 int128 wstr long long ptr long ptr ptr)
|
||||
@ stdcall MFTRegisterLocal(ptr ptr wstr long long ptr long ptr)
|
||||
@ stub MFTRegisterLocalByCLSID
|
||||
@ stdcall MFTRegisterLocalByCLSID(ptr ptr wstr long long ptr long ptr)
|
||||
@ stdcall MFTUnregister(int128)
|
||||
@ stdcall MFTUnregisterLocal(ptr)
|
||||
@ stub MFTUnregisterLocalByCLSID
|
||||
|
|
|
@ -441,6 +441,9 @@ HRESULT WINAPI MFTRegister(CLSID clsid, GUID category, LPWSTR name, UINT32 flags
|
|||
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 MFTRegisterLocalByCLSID(REFCLSID clsid, REFGUID category, LPCWSTR name, UINT32 flags,
|
||||
UINT32 input_count, const MFT_REGISTER_TYPE_INFO *input_types, UINT32 output_count,
|
||||
const MFT_REGISTER_TYPE_INFO *output_types);
|
||||
HRESULT WINAPI MFRemovePeriodicCallback(DWORD key);
|
||||
HRESULT WINAPI MFShutdown(void);
|
||||
HRESULT WINAPI MFStartup(ULONG version, DWORD flags);
|
||||
|
|
Loading…
Reference in New Issue