oleacc: Add Client_get_accHelp implementation.

oldstable
Piotr Caban 2014-05-01 16:14:48 +02:00 committed by Alexandre Julliard
parent 2c8bb773b6
commit 4ecee6f7d8
1 changed files with 7 additions and 2 deletions

View File

@ -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,