oleacc: Add Client_get_accValue implementation.
This commit is contained in:
parent
a5f78530dd
commit
5224f09371
|
@ -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)
|
static HRESULT WINAPI Client_get_accValue(IAccessible *iface, VARIANT varID, BSTR *pszValue)
|
||||||
{
|
{
|
||||||
Client *This = impl_from_Client(iface);
|
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,
|
static HRESULT WINAPI Client_get_accDescription(IAccessible *iface,
|
||||||
|
|
Loading…
Reference in New Issue