oleacc: Add Client_get_accValue implementation.

This commit is contained in:
Piotr Caban 2014-05-01 16:14:31 +02:00 committed by Alexandre Julliard
parent a5f78530dd
commit 5224f09371
1 changed files with 7 additions and 2 deletions

View File

@ -170,8 +170,13 @@ static HRESULT WINAPI Client_get_accName(IAccessible *iface, VARIANT varID, BSTR
static HRESULT WINAPI Client_get_accValue(IAccessible *iface, VARIANT varID, BSTR *pszValue)
{
Client *This = impl_from_Client(iface);
FIXME("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszValue);
return E_NOTIMPL;
TRACE("(%p)->(%s %p)\n", This, debugstr_variant(&varID), pszValue);
*pszValue = NULL;
if(convert_child_id(&varID) != CHILDID_SELF)
return E_INVALIDARG;
return S_FALSE;
}
static HRESULT WINAPI Client_get_accDescription(IAccessible *iface,