Commit 9ee4809d authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

strmbase: Allow constructor function to be NULL but display an error saying we…

strmbase: Allow constructor function to be NULL but display an error saying we don't implement the CLSID.
parent 49962cd4
......@@ -362,7 +362,12 @@ HRESULT WINAPI STRMBASE_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *
if (i == g_cTemplates)
{
FIXME("%s: no class found.\n", debugstr_guid(rclsid));
ERR("%s: no class found.\n", debugstr_guid(rclsid));
return CLASS_E_CLASSNOTAVAILABLE;
}
else if (!pList->m_lpfnNew)
{
FIXME("%s: class not implemented yet.\n", debugstr_guid(rclsid));
return CLASS_E_CLASSNOTAVAILABLE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment