Hans Leidekker : propsys: Return success from PSRegisterPropertySchema.
Module: wine Branch: master Commit: e7d8fd126beec24377f1e0e0a57e202ac527eae4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e7d8fd126beec24377f1e0e0a5... Author: Hans Leidekker <hans(a)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; }
participants (1)
-
Alexandre Julliard