Piotr Caban : oleacc: Add Client_get_accHelp implementation.

Alexandre Julliard julliard at winehq.org
Thu May 1 14:40:00 CDT 2014


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

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Thu May  1 16:14:48 2014 +0200

oleacc: Add Client_get_accHelp implementation.

---

 dlls/oleacc/client.c |    9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/dlls/oleacc/client.c b/dlls/oleacc/client.c
index 7af5c38..104ebdb 100644
--- a/dlls/oleacc/client.c
+++ b/dlls/oleacc/client.c
@@ -218,8 +218,13 @@ static HRESULT WINAPI Client_get_accState(IAccessible *iface, VARIANT varID, VAR
 static HRESULT WINAPI Client_get_accHelp(IAccessible *iface, VARIANT varID, BSTR *pszHelp)
 {
     Client *This = impl_from_Client(iface);
-    FIXME("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszHelp);
-    return E_NOTIMPL;
+
+    TRACE("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszHelp);
+
+    *pszHelp = NULL;
+    if(convert_child_id(&varID) != CHILDID_SELF)
+        return E_INVALIDARG;
+    return S_FALSE;
 }
 
 static HRESULT WINAPI Client_get_accHelpTopic(IAccessible *iface,




More information about the wine-cvs mailing list