propsys: Return success from PSRegisterPropertySchema.

Hans Leidekker hans at codeweavers.com
Mon Jun 14 07:20:49 CDT 2010


---
 dlls/propsys/propsys_main.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/propsys/propsys_main.c b/dlls/propsys/propsys_main.c
index c5bcab7..d2b1744 100644
--- a/dlls/propsys/propsys_main.c
+++ b/dlls/propsys/propsys_main.c
@@ -50,14 +50,14 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 
 HRESULT WINAPI PSRegisterPropertySchema(PCWSTR path)
 {
-    FIXME("stub\n");
+    FIXME("%s\n", debugstr_w(path));
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
-HRESULT WINAPI PSUnregisterPropertySchema(PCWSTR pszPath)
+HRESULT WINAPI PSUnregisterPropertySchema(PCWSTR path)
 {
-    FIXME("stub\n");
+    FIXME("%s\n", debugstr_w(path));
 
     return E_NOTIMPL;
 }
-- 
1.7.0.4







More information about the wine-patches mailing list