Hans Leidekker : propsys: Return success from PSRegisterPropertySchema.

Alexandre Julliard julliard at winehq.org
Mon Jun 14 13:01:17 CDT 2010


Module: wine
Branch: master
Commit: e7d8fd126beec24377f1e0e0a57e202ac527eae4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e7d8fd126beec24377f1e0e0a57e202ac527eae4

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Mon Jun 14 14:20:49 2010 +0200

propsys: Return success from PSRegisterPropertySchema.

---

 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;
 }




More information about the wine-cvs mailing list