dmscript: Return CLASS_E_CLASSNOTAVAILABLE for classes not implemented.
This commit is contained in:
parent
1bd7405193
commit
1643038eca
|
@ -37,7 +37,7 @@ static HRESULT WINAPI create_unimpl_instance(REFIID riid, void **ppv, IUnknown *
|
|||
{
|
||||
FIXME("(%p, %s, %p) stub\n", pUnkOuter, debugstr_dmguid(riid), ppv);
|
||||
|
||||
return E_NOINTERFACE;
|
||||
return CLASS_E_CLASSNOTAVAILABLE;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
|
|
Loading…
Reference in New Issue