dmscript: Return CLASS_E_CLASSNOTAVAILABLE for classes not implemented.

Michael Stefaniuc mstefani at redhat.de
Mon Jan 13 14:53:11 CST 2014


---
 dlls/dmscript/dmscript_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/dmscript/dmscript_main.c b/dlls/dmscript/dmscript_main.c
index e3dc8b7..6caf158 100644
--- a/dlls/dmscript/dmscript_main.c
+++ b/dlls/dmscript/dmscript_main.c
@@ -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;
 }
 
 /******************************************************************
-- 
1.8.3.1



More information about the wine-patches mailing list