Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
38229c8a
Commit
38229c8a
authored
Sep 27, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
Sep 27, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleacc: Add default client IAccessible::put_accValue implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b23af730
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
client.c
dlls/oleacc/client.c
+7
-3
No files found.
dlls/oleacc/client.c
View file @
38229c8a
...
...
@@ -487,11 +487,15 @@ static HRESULT WINAPI Client_put_accName(IAccessible *iface, VARIANT varID, BSTR
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
Client_put_accValue
(
IAccessible
*
iface
,
VARIANT
varID
,
BSTR
pszV
alue
)
static
HRESULT
WINAPI
Client_put_accValue
(
IAccessible
*
iface
,
VARIANT
id
,
BSTR
v
alue
)
{
Client
*
This
=
impl_from_Client
(
iface
);
FIXME
(
"(%p)->(%s %s)
\n
"
,
This
,
debugstr_variant
(
&
varID
),
debugstr_w
(
pszValue
));
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_variant
(
&
id
),
value
);
if
(
convert_child_id
(
&
id
)
!=
CHILDID_SELF
)
return
E_INVALIDARG
;
return
S_FALSE
;
}
static
const
IAccessibleVtbl
ClientVtbl
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment