wmvcore: Add a fixme in WMProfileManager_QueryInterface if interface not found.

Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Louis Lenders 2018-05-22 15:44:08 +02:00 committed by Alexandre Julliard
parent 15284a972c
commit 737bbbecd7
1 changed files with 1 additions and 0 deletions

View File

@ -2133,6 +2133,7 @@ static HRESULT WINAPI WMProfileManager_QueryInterface(IWMProfileManager *iface,
TRACE("(%p)->(IID_IWMProfileManager %p)\n", This, ppv);
*ppv = &This->IWMProfileManager_iface;
}else {
FIXME("Unsupported iface %s\n", debugstr_guid(riid));
*ppv = NULL;
return E_NOINTERFACE;
}